-
Notifications
You must be signed in to change notification settings - Fork 32
45 lines (43 loc) · 1.39 KB
/
build.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
44
45
name: build
on: [push, pull_request]
jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: win64-vstudio-debug
run: python3 fips build win64-vstudio-debug
- name: win64-vstudio-release
run: python3 fips build win64-vstudio-release
mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: osx-make-debug
run: python3 fips build osx-make-debug
- name: osx-make-release
run: python3 fips build osx-make-release
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: prepare
run: |
sudo apt-get update
sudo apt-get install libglu1-mesa-dev mesa-common-dev xorg-dev libasound-dev
- name: linux-make-debug
run: python3 fips build linux-make-debug
- name: linux-make-release
run: python3 fips build linux-make-release
emscripten:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install emsdk
run: |
sudo apt-get install ninja-build
python3 fips emsdk install latest
- name: wasm-ninja-debug
run: python3 fips build wasm-ninja-debug
- name: wasm-ninja-release
run: python3 fips build wasm-ninja-release