ci: do main build with fully generated stm32-metapac.

This commit is contained in:
Dario Nieuwenhuis 2021-11-24 01:43:53 +01:00
parent e187f50f4b
commit f9934fb56b
2 changed files with 8 additions and 10 deletions

View File

@ -12,7 +12,7 @@ env:
jobs: jobs:
all: all:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
needs: [build, test, metapac_gen] needs: [build, test]
steps: steps:
- name: Done - name: Done
run: exit 0 run: exit 0
@ -45,12 +45,3 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Test - name: Test
run: cd embassy && cargo test run: cd embassy && cargo test
metapac_gen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Generate pregenerated metapac
run: cd stm32-metapac-gen; cargo run --release

7
ci.sh
View File

@ -7,6 +7,13 @@ export RUSTFLAGS=-Dwarnings
find -name '*.rs' -not -path '*target*' -not -path '*stm32-metapac-gen/out/*' | xargs rustfmt --check --skip-children --unstable-features --edition 2018 find -name '*.rs' -not -path '*target*' -not -path '*stm32-metapac-gen/out/*' | xargs rustfmt --check --skip-children --unstable-features --edition 2018
# Generate stm32-metapac
# for some reason Cargo stomps the cache if we don't specify --target.
# This happens with vanilla Cargo, not just cargo-batch. Bug?
(cd stm32-metapac-gen; cargo run --release --target x86_64-unknown-linux-gnu)
rm -rf stm32-metapac
mv stm32-metapac-gen/out stm32-metapac
cargo batch \ cargo batch \
--- build --release --manifest-path embassy/Cargo.toml --target thumbv7em-none-eabi \ --- build --release --manifest-path embassy/Cargo.toml --target thumbv7em-none-eabi \
--- build --release --manifest-path embassy/Cargo.toml --target thumbv7em-none-eabi --features log,executor-agnostic \ --- build --release --manifest-path embassy/Cargo.toml --target thumbv7em-none-eabi --features log,executor-agnostic \