Skip to content

Commit

Permalink
Merge pull request #29 from SergioGasquez/master
Browse files Browse the repository at this point in the history
Update CI with `devcontainer` argument
  • Loading branch information
ivmarkov authored Jun 2, 2022
2 parents 6be89f0 + f702a6d commit 5928fb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-esp-idf-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup | ldproxy
run: cargo install ldproxy
- name: (NOSTD, NATIVE, V5.0) Generate
run: cargo generate --git https://github.com/ivmarkov/esp-idf-template cargo --name testnostd --vcs none --silent -d mcu=esp32c3 -d toolchain=nightly -d std=false -d espidfver=mainline
run: cargo generate --git https://github.com/ivmarkov/esp-idf-template cargo --name testnostd --vcs none --silent -d mcu=esp32c3 -d toolchain=nightly -d std=false -d espidfver=mainline -d devcontainer=false
- name: (NOSTD, NATIVE, V5.0) Build | Fmt Check
run: cd testnostd; cargo fmt -- --check
- name: (NOSTD, NATIVE, V5.0) Build | Clippy
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:
- name: Setup | ldproxy
run: cargo install ldproxy
- name: (STD, PIO, V4.3.2) Generate
run: cargo generate --git https://github.com/ivmarkov/esp-idf-template cargo --name test --vcs none --silent -d mcu=esp32c3 -d toolchain=nightly -d std=true -d espidfver=v4.3.2
run: cargo generate --git https://github.com/ivmarkov/esp-idf-template cargo --name test --vcs none --silent -d mcu=esp32c3 -d toolchain=nightly -d std=true -d espidfver=v4.3.2 -d devcontainer=false
- name: (STD, PIO, V4.3.2) Build | Fmt Check
run: cd test; cargo fmt -- --check
- name: (STD, PIO, V4.3.2) Build | Clippy
run: cd test; cargo clippy --features pio --no-deps -- -Dwarnings
- name: (STD, PIO, V4.3.2) Build | Compile
run: cd test; cargo build --features pio
- name: (NOSTD, NATIVE, V4.4) Generate
run: cargo generate --git https://github.com/ivmarkov/esp-idf-template cargo --name testnostd --vcs none --silent -d mcu=esp32c3 -d toolchain=nightly -d std=false -d espidfver=v4.4
run: cargo generate --git https://github.com/ivmarkov/esp-idf-template cargo --name testnostd --vcs none --silent -d mcu=esp32c3 -d toolchain=nightly -d std=false -d espidfver=v4.4 -d devcontainer=false
- name: (NOSTD, NATIVE, V4.4) Build | Fmt Check
run: cd testnostd; cargo fmt -- --check
- name: (NOSTD, NATIVE, V4.4) Build | Clippy
Expand Down

0 comments on commit 5928fb9

Please sign in to comment.