Skip to content

Commit 6e26db5

Browse files
authored
Update build_and_test.yml
No need to build the example separately after all...
1 parent 856f91d commit 6e26db5

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/build_and_test.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,7 @@ jobs:
3030
- name: Run tests
3131
run: cargo test --verbose
3232
# Now build debug and release versions of all example target applications
33-
- name: Build debug get_fw_version example
34-
run: cd cross && cargo build --verbose --bin get_fw_version
35-
- name: Build release get_fw_version examples
36-
run: cd cross && cargo build --verbose --release --bin get_fw_version
37-
- name: Build debug join example
38-
run: cd cross && cargo build --verbose --bin join
39-
- name: Build release join examples
40-
run: cd cross && cargo build --verbose --release --bin join
33+
- name: Build debug examples
34+
run: cd cross && cargo build --verbose
35+
- name: Build release examples
36+
run: cd cross && cargo build --verbose --release

0 commit comments

Comments
 (0)