From eddf3dc0d4daeccbea1ff71c25cec244349106ca Mon Sep 17 00:00:00 2001 From: 9names <60134748+9names@users.noreply.github.com> Date: Fri, 7 Jan 2022 01:22:02 +1100 Subject: [PATCH] List examples built as well --- .github/workflows/build_and_test.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 8c7b999..3d48219 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -12,26 +12,34 @@ jobs: target: thumbv6m-none-eabi override: true 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 with: command: build 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 with: command: build 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 with: command: build 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 with: command: test