Skip to content

Commit

Permalink
ci: test with docker feature enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
kimtore committed Nov 5, 2024
1 parent ad966ca commit 3f77d5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
run: cargo test --verbose --features docker
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN \
export CC_aarch64_unknown_linux_musl=aarch64-linux-gnu-gcc ; \
export CXX_aarch64_unknown_linux_musl=aarch64-linux-gnu-g++ ; \
fi ; \
cargo test --release --target ${TARGET} -- --test-threads 1 ; \
cargo test --release --target ${TARGET} --features docker -- --test-threads 1 ; \
cargo build --release --target ${TARGET} && mkdir -p target/final/release/ && mv target/${TARGET}/release/texas target/final/release/texas ; \
file target/final/release/texas

Expand Down

0 comments on commit 3f77d5a

Please sign in to comment.