Skip to content

Commit 649713c

Browse files
authored
Update emsdk in CI (#409)
* Update emsdk in CI * Update release.yml * Update CI.yml
1 parent 8fea354 commit 649713c

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,18 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- uses: mymindstorm/setup-emsdk@b6b33c4
11-
with: {version: '1.39.14'}
1210
- uses: actions/cache@v1
1311
id: cache
1412
with:
15-
path: ~/.emscripten_cache
16-
key: emscripten-1.39.14
13+
path: '.emsdk-cache'
14+
key: emscripten-1.39.20
15+
- uses: mymindstorm/setup-emsdk@2a4a91b
16+
with:
17+
version: '1.39.20'
18+
actions-cache-folder: '.emsdk-cache'
1719
- name: make
1820
run: make
19-
- uses: actions/upload-artifact@master
21+
- uses: actions/upload-artifact@v2
2022
with: {name: dist, path: dist}
2123
- name: test
2224
run: npm ci && npm test

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15-
- uses: mymindstorm/setup-emsdk@v1
16-
with: {version: '1.39.14'}
15+
- uses: mymindstorm/setup-emsdk@2a4a91b
16+
with: {version: '1.39.20'}
1717
- name: make
1818
run: make
1919
- name: Create Release

0 commit comments

Comments
 (0)