List examples built as well

This commit is contained in:
9names 2022-01-07 01:22:02 +11:00
parent 8b9028d97f
commit eddf3dc0d4

View file

@ -12,26 +12,34 @@ jobs:
target: thumbv6m-none-eabi target: thumbv6m-none-eabi
override: true override: true
profile: minimal profile: minimal
- uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --examples
- uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --examples --features eh1_0_alpha
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: build command: build
args: --workspace args: --workspace
- uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --examples
- run: echo "Debug examples built:" && ls target/thumbv6m-none-eabi/debug/examples/ |grep -v '-' |grep -v '\.d'
- run: rm target/thumbv6m-none-eabi/debug/examples/ -rf
- uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --examples --features eh1_0_alpha
- run: echo "Debug eh1_0 examples built:" && ls target/thumbv6m-none-eabi/debug/examples/ |grep -v '-' |grep -v '\.d'
- run: rm target/thumbv6m-none-eabi/debug/examples/ -rf
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: build command: build
args: --release --workspace --examples args: --release --workspace --examples
- run: echo "Release examples built:" && ls target/thumbv6m-none-eabi/release/examples/ |grep -v '-' |grep -v '\.d'
- run: rm target/thumbv6m-none-eabi/release/examples/ -rf
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: build command: build
args: --release --workspace --examples --features eh1_0_alpha args: --release --workspace --examples --features eh1_0_alpha
- run: echo "Release eh1_0 examples built:" && ls target/thumbv6m-none-eabi/release/examples/ |grep -v '-' |grep -v '\.d'
- run: rm target/thumbv6m-none-eabi/release/examples/ -rf
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: test command: test