aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-04-20 09:19:54 +0000
committerGitHub <[email protected]>2023-04-20 09:19:54 +0000
commitfb27594b2eb2cca2aea25dd92a7b730c185b6ecc (patch)
treec39b55c66f8c9f65e17aabb2f70b964e9dcb9e0a /.github/workflows
parent9b51c8f4d441a3e1550305c126e9f74fff030fd5 (diff)
parenta73f9474a0dc4af1ebfb22d7960e6c4b3aca81bd (diff)
Merge #1383
1383: embassy-boot: Add nightly flag r=Dirbaio a=sawi97 This adds "nightly" as a flag to embassy-boot and embassy-boot-nrf which gates features requiring nightly, enabled by default. Makes it possible to build the bootloader with the stable compiler when setting `default-features=false`. It should be straight forward to do this for stm32 and rp as well, but I am not been able to test it. Co-authored-by: sander <[email protected]> Co-authored-by: sawi97 <[email protected]>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/rust.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 3bfe5ef03..79354fe70 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -71,7 +71,7 @@ jobs:
71 71
72 - name: Test boot 72 - name: Test boot
73 working-directory: ./embassy-boot/boot 73 working-directory: ./embassy-boot/boot
74 run: cargo test && cargo test --features "ed25519-dalek" && cargo test --features "ed25519-salty" 74 run: cargo test && cargo test --features nightly && cargo test --features "ed25519-dalek,nightly" && cargo test --features "ed25519-salty,nightly"
75 75
76 - name: Test sync 76 - name: Test sync
77 working-directory: ./embassy-sync 77 working-directory: ./embassy-sync