Skip to content

Commit 17f0442

Browse files
mbrossardmathias-arm
authored andcommitted
github_actions: update GNU Arm Embedded Toolchain to 10.3-2021.07
1 parent ab4ec3c commit 17f0442

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
id: cache-arm-gcc
1515
uses: actions/cache@v2
1616
env:
17-
cache-name: arm-gcc-9-2020-q2
17+
cache-name: arm-gcc-10.3-2021-07
1818
with:
1919
path: ${{ runner.temp }}/arm-gcc
2020
key: ${{ runner.os }}-${{ env.cache-name }}
@@ -40,11 +40,11 @@ jobs:
4040
- name: Install Embedded Arm Toolchain
4141
if: steps.cache-arm-gcc.outputs.cache-hit != 'true'
4242
run: |
43-
curl -O -L https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2020q2/gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2
44-
md5sum gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2
43+
curl -O -L https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.07/gcc-arm-none-eabi-10.3-2021.07-x86_64-linux.tar.bz2
44+
md5sum gcc-arm-none-eabi-10.3-2021.07-x86_64-linux.tar.bz2
4545
echo Installing in ${{ runner.temp }}/arm-gcc
4646
mkdir -p ${{ runner.temp }}/arm-gcc
47-
tar jvxf gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2 -C ${{ runner.temp }}/arm-gcc --strip-components 1
47+
tar jvxf gcc-arm-none-eabi-10.3-2021.07-x86_64-linux.tar.bz2 -C ${{ runner.temp }}/arm-gcc --strip-components 1
4848
4949
- name: Install dependencies
5050
run: |

.github/workflows/windows.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
id: cache-arm-gcc
1212
uses: actions/cache@v2
1313
env:
14-
cache-name: arm-gcc-9-2020-q2
14+
cache-name: arm-gcc-10.3-2021-07
1515
with:
1616
path: ${{ runner.temp }}/arm-gcc
1717
key: ${{ runner.os }}-${{ env.cache-name }}
@@ -33,9 +33,10 @@ jobs:
3333
- name: Install Embedded Arm Toolchain
3434
if: steps.cache-arm-gcc.outputs.cache-hit != 'true'
3535
run: |
36-
(New-Object System.Net.WebClient).DownloadFile("https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2020q2/gcc-arm-none-eabi-9-2020-q2-update-win32.zip","gcc-arm-none-eabi-9-2020-q2-update-win32.zip");
36+
(New-Object System.Net.WebClient).DownloadFile("https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.07/gcc-arm-none-eabi-10.3-2021.07-win32.zip","gcc-arm-none-eabi-10.3-2021.07-win32.zip");
3737
echo "Installing gcc-arm-none-eabi-9-2020-q2-update-win32 in ${{ runner.temp }}\arm-gcc";
38-
Expand-Archive -Path .\gcc-arm-none-eabi-9-2020-q2-update-win32.zip -DestinationPath ${{ runner.temp }}\arm-gcc -PassThru;
38+
Expand-Archive -Path .\gcc-arm-none-eabi-10.3-2021.07-win32.zip -DestinationPath ${{ runner.temp }} -PassThru;
39+
Rename-Item -Path ${{ runner.temp }}\gcc-arm-none-eabi-10.3-2021.07 -NewName ${{ runner.temp }}\arm-gcc
3940
4041
- name: Check Embedded Arm Toolchain
4142
run: |

0 commit comments

Comments
 (0)