You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Ensures --all-features builds correctly, the current logic will mean it
91
89
# uses stock zlib, not cmake nor cc
92
90
- run: |
93
-
cargo test --target $TARGET_TRIPLE --all-features
94
-
cargo run --target $TARGET_TRIPLE --manifest-path systest/Cargo.toml --all-features
91
+
cargo test --all-features
92
+
cargo run --manifest-path systest/Cargo.toml --all-features
95
93
# Ensures zlib-ng builds and runs, though zlib-ng _could_ change internally
96
94
# and not use all optimizations available to the CI runner, we do this here
97
95
# just for x86_64-unknown-linux-gnu to validate a common target compiles
98
96
# on a more recent compiler than the incredibly ancient one currently used by cross
99
97
- run: |
100
-
cargo test --target $TARGET_TRIPLE --no-default-features --features zlib-ng-no-cmake-experimental-community-maintained || echo "::warning::failed to build libz-ng with --features zlib-ng-no-cmake-experimental-community-maintained"
101
-
cargo run --target $TARGET_TRIPLE --manifest-path systest/Cargo.toml --no-default-features --features zlib-ng-no-cmake-experimental-community-maintained || echo "::warning::failed to run systest with --features zlib-ng-no-cmake-experimental-community-maintained"
98
+
cargo test --no-default-features --features zlib-ng-no-cmake-experimental-community-maintained || echo "::warning::failed to build libz-ng with --features zlib-ng-no-cmake-experimental-community-maintained"
99
+
cargo run --manifest-path systest/Cargo.toml --no-default-features --features zlib-ng-no-cmake-experimental-community-maintained || echo "::warning::failed to run systest with --features zlib-ng-no-cmake-experimental-community-maintained"
0 commit comments