-
Notifications
You must be signed in to change notification settings - Fork 58
44 lines (42 loc) · 1.28 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
name: Build
on: [push, pull_request]
jobs:
windows:
runs-on: windows-latest
steps:
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v4
with:
submodules: true
- name: build debug
run: python3 fips build win64-vstudio-debug
- name: build release
run: python3 fips build win64-vstudio-release
- name: test
run: python3 fips run_tests win64-vstudio-release
mac:
runs-on: macos-latest
steps:
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v4
with:
submodules: true
- name: build debug
run: python3 fips build osx-ninja-debug
- name: build release
run: python3 fips build osx-ninja-release
- name: test
run: python3 fips run_tests osx-ninja-release
linux:
runs-on: ubuntu-latest
steps:
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v4
with:
submodules: true
- name: build debug
run: python fips build linux-ninja-debug
- name: build release
run: python fips build linux-ninja-release
- name: test
run: python3 fips run_tests linux-ninja-release