diff options
author | 2021-01-26 17:00:45 +0100 | |
---|---|---|
committer | 2021-01-26 17:00:45 +0100 | |
commit | b45a5b6bcada5a1e22efbbecaa5ea23e244b56f6 (patch) | |
tree | 20e0953710876ae0d705c2161aac917fc55d5962 /cortex-m-rt | |
parent | dbd0f6cb42000ebe019f264bf14a8899d585c25b (diff) | |
download | cortex-m-b45a5b6bcada5a1e22efbbecaa5ea23e244b56f6.tar.gz cortex-m-b45a5b6bcada5a1e22efbbecaa5ea23e244b56f6.tar.zst cortex-m-b45a5b6bcada5a1e22efbbecaa5ea23e244b56f6.zip |
add host build test; rename "crate" to "examples" in others to clarify
Diffstat (limited to 'cortex-m-rt')
-rw-r--r-- | cortex-m-rt/.github/workflows/ci.yml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/cortex-m-rt/.github/workflows/ci.yml b/cortex-m-rt/.github/workflows/ci.yml index 35abd15..8ab6ebb 100644 --- a/cortex-m-rt/.github/workflows/ci.yml +++ b/cortex-m-rt/.github/workflows/ci.yml @@ -64,17 +64,19 @@ jobs: override: true - name: Install all Rust targets run: rustup target install thumbv6m-none-eabi thumbv7m-none-eabi thumbv7em-none-eabi thumbv7em-none-eabihf thumbv8m.base-none-eabi thumbv8m.main-none-eabi thumbv8m.main-none-eabihf - - name: Build crate for thumbv6m-none-eabi + - name: Build examples for thumbv6m-none-eabi run: cargo build --target=thumbv6m-none-eabi --examples - - name: Build crate for thumbv7m-none-eabi + - name: Build examples for thumbv7m-none-eabi run: cargo build --target=thumbv7m-none-eabi --examples - - name: Build crate for thumbv7em-none-eabi + - name: Build examples for thumbv7em-none-eabi run: cargo build --target=thumbv7em-none-eabi --examples - - name: Build crate for thumbv7em-none-eabihf + - name: Build examples for thumbv7em-none-eabihf run: cargo build --target=thumbv7em-none-eabihf --examples - - name: Build crate for thumbv8m.base-none-eabi + - name: Build examples for thumbv8m.base-none-eabi run: cargo build --target=thumbv8m.base-none-eabi --examples - - name: Build crate for thumbv8m.main-none-eabi + - name: Build examples for thumbv8m.main-none-eabi run: cargo build --target=thumbv8m.main-none-eabi --examples - - name: Build crate for thumbv8m.main-none-eabihf + - name: Build examples for thumbv8m.main-none-eabihf run: cargo build --target=thumbv8m.main-none-eabihf --examples + - name: Build crate for host OS + run: cargo build |