Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: "Run"
on:
push:
branches:
- "master"
on: [pull_request, push]

jobs:
defaults:
Expand All @@ -11,17 +8,17 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: mymindstorm/setup-emsdk@master
- uses: agriyakhetarpal/setup-emsdk@update-to-cache-v4

- name: Verify
run: emcc -v
actions-use-cache-test:
runs-on: ubuntu-latest
steps:
- name: Setup emsdk (use cache if found, create otherwise)
uses: mymindstorm/setup-emsdk@master
uses: agriyakhetarpal/setup-emsdk@update-to-cache-v4
with:
version: 2.0.20
version: 4.0.9
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2.0.20 is a bit too old by now, would it be okay to have bumped to 4.0.9?

actions-cache-folder: 'emsdk-cache-folder'
no-cache: true

Expand All @@ -30,7 +27,7 @@ jobs:
no-install:
runs-on: ubuntu-latest
steps:
- uses: mymindstorm/setup-emsdk@master
- uses: agriyakhetarpal/setup-emsdk@update-to-cache-v4
with:
no-install: true

Expand All @@ -40,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup emsdk (use cache if found, create otherwise)
uses: mymindstorm/setup-emsdk@master
uses: agriyakhetarpal/setup-emsdk@update-to-cache-v4
with:
version: tot
no-cache: true
Expand Down
Loading