Drop MSRV for no_std to 1.47 as that's what Ubuntu LTS ships with
authorMatt Corallo <git@bluematt.me>
Thu, 22 Jul 2021 15:01:03 +0000 (15:01 +0000)
committerMatt Corallo <git@bluematt.me>
Sat, 31 Jul 2021 18:31:16 +0000 (18:31 +0000)
...but disable it for now given core2 is broken (it claims an MSRV
of 1.47 but does not build).

.github/workflows/build.yml

index 440cc240399bcc9f1f5172a52e6979381fa3858a..5b886e19bff5d440cdabb8441b4e4a9d17077fdb 100644 (file)
@@ -16,8 +16,8 @@ jobs:
                      1.41.0,
                      # 1.45.2 is MSRV for lightning-net-tokio, lightning-block-sync, and coverage generation
                      1.45.2,
-                     # 1.49.0 is MSRV for no_std builds using hashbrown
-                     1.49.0]
+                     # 1.47.0 will be the MSRV for no_std builds using hashbrown once core2 is updated
+                     1.47.0]
         include:
           - toolchain: stable
             build-net-tokio: true
@@ -41,8 +41,8 @@ jobs:
             build-net-tokio: true
             build-no-std: false
             coverage: true
-          - toolchain: 1.49.0
-            build-no-std: true
+          - toolchain: 1.47.0
+            build-no-std: false
     runs-on: ${{ matrix.platform }}
     steps:
       - name: Checkout source code