Test no_std instead of just hashbrown
authorDevrandom <c1.devrandom@niftybox.net>
Mon, 19 Jul 2021 17:28:06 +0000 (19:28 +0200)
committerDevrandom <c1.devrandom@niftybox.net>
Tue, 20 Jul 2021 18:59:18 +0000 (20:59 +0200)
.github/workflows/build.yml

index 85aaac6a3a0d378e5cef84a1f7ef307d121a8658..ebca7680f4414bc0cdf7565ff8c8bdffa8d59e7a 100644 (file)
@@ -90,13 +90,15 @@ jobs:
         if: "matrix.build-no-std && !matrix.coverage"
         run: |
           cd lightning
-          cargo test --verbose --color always --features hashbrown
+          cargo test --verbose --color always --no-default-features --features no_std
+          # check if there is a conflict between no_std and the default std feature
+          cargo test --verbose --color always --features no_std
           cd ..
       - name: Test on no_std bullds Rust ${{ matrix.toolchain }} and full code-linking for coverage generation
         if: "matrix.build-no-std && matrix.coverage"
         run: |
           cd lightning
-          RUSTFLAGS="-C link-dead-code" cargo test --verbose --color always --features hashbrown
+          RUSTFLAGS="-C link-dead-code" cargo test --verbose --color always --no-default-features --features no_std
           cd ..
       - name: Test on Rust ${{ matrix.toolchain }}
         if: "! matrix.build-net-tokio"