mirror of https://github.com/YosysHQ/yosys.git
21 lines
399 B
YAML
21 lines
399 B
YAML
|
name: Emscripten Build
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
emcc:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: mymindstorm/setup-emsdk@v11
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Cache sources
|
||
|
id: cache-sources
|
||
|
uses: actions/cache@v2
|
||
|
with:
|
||
|
path: .
|
||
|
key: cache-yosys
|
||
|
- name: Build
|
||
|
run: |
|
||
|
make config-emcc
|
||
|
make
|