Skip to content

Commit

Permalink
Merge pull request #1 from ryanwinter/10-2021.07
Browse files Browse the repository at this point in the history
10 2021.07
  • Loading branch information
ryanwinter authored Aug 11, 2021
2 parents 1550662 + e67808f commit cd4320c
Show file tree
Hide file tree
Showing 8 changed files with 7,999 additions and 14,722 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
- uses: actions/checkout@v2
- uses: ./
with:
release: 10-2020-q4
release: 10-2021.07
- run: arm-none-eabi-gcc -v
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ Add the following to your GitHub workflow:
- name: arm-none-eabi-gcc
uses: ryanwinter/arm-none-eabi-gcc@master
with:
release: '10-2020-q4' # The arm-none-eabi-gcc release to use.
release: '10-2021.07' # The arm-none-eabi-gcc release to use.

- run: ...
```
## Releases
* 10-2021.07
* 10-2020-q4
* 9-2020-q2
* 9-2019-q4
Expand Down
6 changes: 4 additions & 2 deletions __tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ test('test url', () => {
expect(gcc.distributionUrl('10-2020-q4', 'win32')).toStrictEqual(
'https://developer.arm.com/-/media/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-win32.zip'
)
expect(gcc.distributionUrl('10-2021.07', 'darwin')).toStrictEqual(
'https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.07/gcc-arm-none-eabi-10.3-2021.07-mac-10.14.6.tar.bz2'
)
})

test('test url response', async () => {
Expand All @@ -60,8 +63,7 @@ async function tmpInstall(release: string, platform?: string): Promise<void> {
test(
'install',
async () => {
await tmpInstall('10-2020-q4', 'win32')
// await tmpInstall('9-2019-q4', 'linux')
await tmpInstall('10-2021.07', 'win32')
},
40 * 60 * 1000
)
15 changes: 9 additions & 6 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit cd4320c

Please sign in to comment.