-
Notifications
You must be signed in to change notification settings - Fork 10
46 lines (37 loc) · 874 Bytes
/
CI.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
46
name: CI
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master ]
jobs:
linux_macos:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [
ubuntu-20.04, ubuntu-22.04, ubuntu-latest,
macos-11, macos-12, macos-13, macos-14, macos-latest,
]
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Build
run: make DEBUG=1
- name: Check
run: make check
windows:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-2019, windows-2022, windows-latest ]
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: ilammy/msvc-dev-cmd@v1
- name: Build
run: ./build.bat
- name: Check
run: ./amalgamate -h