1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2025-01-27 19:25:49 +00:00

try again

This commit is contained in:
Felix Ableitner 2024-12-09 12:23:15 +01:00
parent 3d6413f820
commit 7e4102bba7

View file

@ -59,16 +59,6 @@ steps:
- diesel print-schema --config-file=diesel.toml > tmp.schema
- diff tmp.schema src/backend/database/schema.rs
cargo_clippy:
image: *rust_image
environment:
CARGO_HOME: .cargo_home
commands:
- echo $CARGO_HOME
- ls -lah .cargo_home
- rustup component add clippy
- cargo clippy --tests --all-targets --all-features
cargo_test:
image: *rust_image
environment:
@ -82,7 +72,7 @@ steps:
- chown testuser:testuser . -R
- chown testuser:testuser /home/testuser -R
- export PATH="/usr/lib/postgresql/15/bin:/usr/local/cargo/bin:$PATH"
- sudo -u testuser env "PATH=$PATH CARGO_HOME=$CARGO_HOME" cargo test --no-fail-fast
- sudo -u testuser env "PATH=$PATH" "CARGO_HOME=$CARGO_HOME" cargo test --no-fail-fast
build_release:
image: *rust_image