Skip to content

Commit

Permalink
fixup! chore(CI): Line break long command line invocations
Browse files Browse the repository at this point in the history
Sprinkling backslashes on top
  • Loading branch information
chrysn committed Oct 30, 2024
1 parent 6c36e17 commit cdc59dd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ jobs:
- name: rustdoc
run: |
RUSTDOCFLAGS='-D warnings' cargo doc \
-p riot-rs
-p riot-rs \
--features "
bench,
coap,
Expand Down Expand Up @@ -371,35 +371,35 @@ jobs:
- name: rustdoc for RP
run: |
RUSTDOCFLAGS='-D warnings --cfg context="rp2040"' cargo doc
RUSTDOCFLAGS='-D warnings --cfg context="rp2040"' cargo doc \
--features "
external-interrupts,
i2c,
spi,
embassy-rp/rp2040
"
" \
-p riot-rs-rp
- name: rustdoc for nRF
run: |
RUSTDOCFLAGS='-D warnings --cfg context="nrf52840"' cargo doc
RUSTDOCFLAGS='-D warnings --cfg context="nrf52840"' cargo doc \
--features "
external-interrupts,
i2c,
spi,
embassy-nrf/nrf52840
"
" \
-p riot-rs-nrf
- name: rustdoc for STM32
run: |
RUSTDOCFLAGS='-D warnings --cfg context="stm32wb55rgvx"' cargo doc
RUSTDOCFLAGS='-D warnings --cfg context="stm32wb55rgvx"' cargo doc \
--features "
external-interrupts,
i2c,
spi,
embassy-stm32/stm32wb55rg
"
" \
-p riot-rs-stm32
- name: rustfmt
Expand Down

0 comments on commit cdc59dd

Please sign in to comment.