-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (58 loc) · 1.25 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Build with Meson
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
win-art:
runs-on: windows-latest
steps:
- name: Install Meson
run: pip3 install meson ninja
- uses: actions/checkout@v4
- name: Write Ninja files
run: meson build
- name: Build
run: |
cd build
ninja
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: windows.exe
path: build/ebsl.exe
dar-art:
runs-on: macos-latest
steps:
- name: Install Meson
run: brew install meson ninja
- uses: actions/checkout@v4
- name: Write Ninja files
run: meson build
- name: Build
run: |
cd build
ninja
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: macos
path: build/ebsl
ub-art:
runs-on: ubuntu-latest
steps:
- name: Install Meson
run: sudo apt-get install meson ninja-build
- uses: actions/checkout@v4
- name: Write Ninja files
run: meson build
- name: Build
run: |
cd build
ninja
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: ubuntu
path: build/ebsl