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
# Test workspaces for Rust stable, beta, and 1.34.2
20
-
- if [ "$(rustup show | grep default | grep 1.22.0)" == "" ]; RUSTFLAGS="-C link-dead-code" cargo test --verbose
21
-
# Test lightning workspace for 1.22.0
22
-
- if [ "$(rustup show | grep default | grep 1.22.0)" != "" ]; RUSTFLAGS="-C link-dead-code" cargo test --verbose -p lightning
23
-
# Run lightning workspace fuzz tests for Rust 1.34.2
24
-
- if [ "$(rustup show | grep default | grep 1.34.2)" != "" ]; then cd lightning/fuzz && cargo test --verbose && ./travis-fuzz.sh; fi
16
+
- RUSTFLAGS="-C link-dead-code" cargo build --verbose -p lightning # Build lightning workspace with Rust stable, beta, 1.22.0, and 1.34.0
17
+
- rm -f target/debug/lightning-* # Make sure we drop old test binaries
18
+
- if [ "$(rustup show | grep default | grep stable)" != "" ]; RUSTFLAGS="-C link-dead-code" cargo build --verbose -p lightning-net-tokio # Build lightning workspace with Rust stable
19
+
- rm -f target/debug/lightning-* # Make sure we drop old test binaries
20
+
- if [ "$(rustup show | grep default | grep 1.22.0)" == "" ]; RUSTFLAGS="-C link-dead-code" cargo test --verbose # Test workspaces for Rust stable, beta, and 1.34.2
21
+
- if [ "$(rustup show | grep default | grep 1.22.0)" != "" ]; RUSTFLAGS="-C link-dead-code" cargo test --verbose -p lightning # Test lightning workspace for 1.22.0
22
+
- if [ "$(rustup show | grep default | grep 1.34.2)" != "" ]; then cd lightning/fuzz && cargo test --verbose && ./travis-fuzz.sh; fi # Run lightning workspace fuzz tests for Rust 1.34.2
25
23
- if [ "$(rustup show | grep default | grep stable)" != "" ]; then
0 commit comments