aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Anatol Ulrich <anatol.ulrich@ferrous-systems.com> 2021-01-26 17:00:45 +0100
committerGravatar Anatol Ulrich <anatol.ulrich@ferrous-systems.com> 2021-01-26 17:00:45 +0100
commitb45a5b6bcada5a1e22efbbecaa5ea23e244b56f6 (patch)
tree20e0953710876ae0d705c2161aac917fc55d5962
parentdbd0f6cb42000ebe019f264bf14a8899d585c25b (diff)
downloadcortex-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
-rw-r--r--cortex-m-rt/.github/workflows/ci.yml16
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