Make sure to test building with flip-link in CI (#1012)

This commit is contained in:
Björn Quentin 2023-12-11 14:39:16 +01:00 committed by GitHub
parent c1912fc079
commit 7305ca138c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -288,6 +288,8 @@ jobs:
# for each supported image format.
- name: build esp32c6-hal (no features)
run: cd esp32c6-hal/ && cargo +nightly build --examples
- name: build esp32c6-hal (flip-link feature)
run: cd esp32c6-hal/ && cargo +nightly build --examples --features=flip-link
# Subsequent steps can just check the examples instead, as we're already
# confident that they link.
- name: check esp32c6-hal (common features)
@ -360,6 +362,8 @@ jobs:
# for each supported image format.
- name: build esp32h2-hal (no features)
run: cd esp32h2-hal/ && cargo +nightly build --examples
- name: build esp32h2-hal (flip-link feature)
run: cd esp32h2-hal/ && cargo +nightly build --examples --features=flip-link
# Subsequent steps can just check the examples instead, as we're already
# confident that they link.
- name: check esp32h2-hal (common features)