aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxoviat <[email protected]>2021-03-19 10:46:13 -0500
committerxoviat <[email protected]>2021-03-19 10:46:13 -0500
commit267c3cadf24d41b1543bc4edd29d484228fe8609 (patch)
treeab0a6f113263a2de43c18ceb95b616d927a9cb56
parente3686ab784922ad5233a55c1011080c37d35fb5a (diff)
ci: attempt to consolidate nrf examples
-rw-r--r--.github/workflows/rust.yml17
1 files changed, 2 insertions, 15 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index d184ebc4e..26e8e8c88 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -26,8 +26,8 @@ jobs:
26 - package: embassy 26 - package: embassy
27 target: thumbv6m-none-eabi 27 target: thumbv6m-none-eabi
28 features: defmt 28 features: defmt
29# - package: embassy-nrf-examples 29 - package: embassy-nrf-examples
30# target: thumbv7em-none-eabi 30 target: thumbv7em-none-eabi
31 - package: embassy-nrf 31 - package: embassy-nrf
32 target: thumbv7em-none-eabi 32 target: thumbv7em-none-eabi
33 features: 52810 33 features: 52810
@@ -94,16 +94,3 @@ jobs:
94 with: 94 with:
95 command: fmt 95 command: fmt
96 args: --all -- --check 96 args: --all -- --check
97
98 nrf_examples:
99 runs-on: ubuntu-latest
100 steps:
101 - uses: actions/checkout@v2
102 - uses: actions-rs/toolchain@v1
103 with:
104 toolchain: nightly
105 components: rust-src, rustfmt
106 target: thumbv7em-none-eabi
107 override: true
108 - name: Build
109 run: (cd embassy-nrf-examples; cargo build --target thumbv7em-none-eabi --bins)