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
cargo run --manifest-path systest/Cargo.toml --all-features
93
+
# Ensures zlib-ng builds and runs, though zlib-ng _could_ change internally
94
+
# and not use all optimizations available to the CI runner, we do this here
95
+
# just for x86_64-unknown-linux-gnu to validate a common target compiles
96
+
# on a more recent compiler than the incredibly ancient one currently used by cross
97
+
- run: |
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"
# Ensures --all-features builds correctly, the current logic will mean it
103
-
# uses stock zlib, not cmake nor cc
104
-
- run: |
105
-
cargo test --target $TARGET_TRIPLE --all-features
106
-
cargo run --target $TARGET_TRIPLE --manifest-path systest/Cargo.toml --all-features
107
-
# Ensures zlib-ng builds and runs, though zlib-ng _could_ change internally
108
-
# and not use all optimizations available to the CI runner, we do this here
109
-
# just for x86_64-unknown-linux-gnu to validate a common target compiles
110
-
# on a more recent compiler than the incredibly ancient one currently used by cross
111
109
- run: |
112
-
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"
113
-
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"
0 commit comments