Skip to content

Commit

Permalink
ci: update pages (#382)
Browse files Browse the repository at this point in the history
* ci: update pages

* Ignore new dead_code warnings

* Fix embedded-time feature name

* Fix use of non-existing log feature

* testsuite/subghz: fix static_mut_refs warning

* itertools: 0.11 -> 0.12

* Cargo.lock: update

updated aes v0.8.3 -> v0.8.4
updated autocfg v1.1.0 -> v1.3.0
updated chrono v0.4.31 -> v0.4.38
updated const-oid v0.9.5 -> v0.9.6
updated cortex-m-rt v0.7.3 -> v0.7.4
updated cpufeatures v0.2.11 -> v0.2.12
updated crypto-bigint v0.5.3 -> v0.5.5
updated defmt v0.3.5 -> v0.3.6
updated defmt-macros v0.3.6 -> v0.3.7
updated defmt-parser v0.3.3 -> v0.3.4
updated defmt-test v0.3.1 -> v0.3.2
updated defmt-test-macros v0.3.0 -> v0.3.1
updated der v0.7.8 -> v0.7.9
updated ecdsa v0.16.8 -> v0.16.9
updated either v1.9.0 -> v1.11.0
updated elliptic-curve v0.13.6 -> v0.13.8
updated ghash v0.5.0 -> v0.5.1
updated libc v0.2.149 -> v0.2.154
updated num-integer v0.1.45 -> v0.1.46
updated num-iter v0.1.43 -> v0.1.45
updated num-traits v0.2.17 -> v0.2.19
updated opaque-debug v0.3.0 -> v0.3.1
updated paste v1.0.14 -> v1.0.15
updated polyval v0.6.1 -> v0.6.2
updated primeorder v0.13.2 -> v0.13.6
updated proc-macro2 v1.0.69 -> v1.0.82
updated quote v1.0.33 -> v1.0.36
updated signature v2.1.0 -> v2.2.0
updated syn v2.0.38 -> v2.0.62
updated thiserror v1.0.50 -> v1.0.60
updated thiserror-impl v1.0.50 -> v1.0.60
updated zeroize v1.6.0 -> v1.7.0

* testsuite: exit on panic

* CI: remove run_testsuite
  • Loading branch information
newAM authored Sep 2, 2024
1 parent 9af3ed0 commit 854fb3b
Show file tree
Hide file tree
Showing 12 changed files with 100 additions and 111 deletions.
28 changes: 2 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,28 +99,6 @@ jobs:
!target/thumbv7em-none-eabi/debug/deps/examples/**/*
!target/thumbv7em-none-eabi/debug/deps/incremental/**/*
run_testsuite:
name: Run Testsuite
runs-on: self-hosted
needs:
- build_testsuite
steps:
- uses: actions/checkout@v4
- name: Display probe-run version
run: probe-rs --version
- name: List probes
run: probe-rs list
- uses: actions/download-artifact@v4
with:
name: test-bins
path: bins
- name: Run on-target tests
timeout-minutes: 5
run: |
python3 testsuite/runall.py --elf-dir bins \
0483:374e:002900205553500A20393256 \
0483:374e:0034001A5553500B20393256
test:
name: Unit Tests
runs-on: ubuntu-latest
Expand Down Expand Up @@ -155,8 +133,6 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
# not using clippy-check due to this issue:
# https://github.com/actions-rs/clippy-check/issues/2
- run: cargo clippy --features stm32wl5x_cm4 -- --deny warnings

format:
Expand Down Expand Up @@ -199,7 +175,7 @@ jobs:
-- -Z unstable-options --enable-index-page
chmod -R 777 ../target
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
path: target/doc

Expand All @@ -216,7 +192,7 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v3
uses: actions/deploy-pages@v4
id: deployment

release:
Expand Down
Loading

0 comments on commit 854fb3b

Please sign in to comment.