-
Notifications
You must be signed in to change notification settings - Fork 28
43 lines (34 loc) · 1.03 KB
/
emulator-wasm.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: emulator-wasm
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Release
OUTPUT_DIR: build_wasm
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Ninja
uses: ashutoshvarma/setup-ninja@master
with:
# ninja version to download. Default: 1.10.0
version: 1.10.0
- name: Setup emscripten
working-directory: ${{ github.workspace }}
run: ./emconfig.bat ${{ env.OUTPUT_DIR }}
- name: Build
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
run: cmake --build ${{ env.OUTPUT_DIR }} --config ${{ env.BUILD_TYPE }}
- name: Archive build artifacts
uses: actions/upload-artifact@v3
with:
name: emulator-wasm-build
path: ${{ env.OUTPUT_DIR }}/bin