diff options
author | 2023-10-29 15:05:51 -0700 | |
---|---|---|
committer | 2023-10-29 15:05:51 -0700 | |
commit | fa7031a430a570c643ae12cbd3f527c8d48213f5 (patch) | |
tree | 3103776c54ce24554e6b63b7ea543bdda604d858 /.github/workflows/on-target.yml | |
parent | 7f6ff8fb72eb333344c02147c06e7dc6801870c3 (diff) | |
download | cortex-m-fa7031a430a570c643ae12cbd3f527c8d48213f5.tar.gz cortex-m-fa7031a430a570c643ae12cbd3f527c8d48213f5.tar.zst cortex-m-fa7031a430a570c643ae12cbd3f527c8d48213f5.zip |
CI: actions-rs/toolchain -> dtolnay/rust-toolchain
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/on-target.yml | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/.github/workflows/on-target.yml b/.github/workflows/on-target.yml index 4276269..beb0e7d 100644 --- a/.github/workflows/on-target.yml +++ b/.github/workflows/on-target.yml @@ -15,12 +15,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions-rs/toolchain@v1 + - uses: dtolnay/rust-toolchain@stable with: - profile: minimal - toolchain: stable - override: true - target: thumbv7m-none-eabi + targets: thumbv7m-none-eabi - name: Build testsuite env: RUSTFLAGS: -C link-arg=-Tlink.x -D warnings @@ -40,12 +37,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions-rs/toolchain@v1 + - uses: dtolnay/rust-toolchain@stable with: - profile: minimal - toolchain: stable - override: true - target: thumbv6m-none-eabi + targets: thumbv6m-none-eabi - name: Modify linkerfile run: | sed -i 's/FLASH : ORIGIN = 0x00000000, LENGTH = 256K/FLASH : ORIGIN = 0x8000000, LENGTH = 128K/g' memory.x |