Skip to content

Commit 6d88a81

Browse files
committed
Repair CI on ARM aarch64
1 parent eabf8e8 commit 6d88a81

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/real-time-cpp.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,12 @@ jobs:
159159
with:
160160
fetch-depth: '0'
161161
- name: update-tools
162-
run: sudo apt install gcc-aarch64-none-elf
163-
- name: target-arm-${{ matrix.suite }}
164162
run: |
163+
wget https://developer.arm.com/-/media/Files/downloads/gnu/14.3.rel1/binrel/arm-gnu-toolchain-14.3.rel1-x86_64-aarch64-none-elf.tar.xz
164+
tar -xf arm-gnu-toolchain-14.3.rel1-x86_64-aarch64-none-elf.tar.xz -C ${{ runner.workspace }}
165+
- name: target-arm-aarch64-${{ matrix.suite }}
166+
run: |
167+
PATH="${{ runner.workspace }}/arm-gnu-toolchain-14.3.rel1-x86_64-aarch64-none-elf/bin:$PATH"
165168
./target/build/build.sh ${{ matrix.suite }} rebuild
166169
ls -la ./bin/ref_app.hex ./bin/ref_app.s19 ./bin/ref_app.map
167170
working-directory: ./ref_app/

0 commit comments

Comments
 (0)