-
Notifications
You must be signed in to change notification settings - Fork 2
163 lines (155 loc) · 5.19 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
name: C/C++ CI
on:
push:
branches: [ master, vil ]
paths:
- "**.c"
- "**.cpp"
- "**.h"
- "**.hpp"
- "**.inl"
- "**meson.build"
- "**ci.yml"
pull_request:
branches: [ master, vil ]
paths:
- "**.c"
- "**.cpp"
- "**.h"
- "**.hpp"
- "**.inl"
- "*meson.build"
jobs:
linux-gcc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- run: pip install meson ninja
- run: sudo apt-get -y update
- name: Install deps
run: sudo apt-get -y -f install valgrind libvulkan-dev libvulkan1 vulkan-tools
libxkbcommon-dev libwayland-dev libxcb1-dev wayland-protocols libxcb-ewmh-dev
libxcb-icccm4-dev libxcb-shm0-dev libxcb-present-dev libxcb-xinput-dev libxcb-xkb-dev
libxkbcommon-x11-dev libx11-dev libx11-xcb-dev
- run: meson setup build/ --backend=ninja -Dexamples=true
env:
CC: gcc
- run: meson compile -C build
linux-gcc-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- run: pip install meson ninja
- run: sudo apt-get -y update
- name: Install deps
run: sudo apt-get -y -f install valgrind libvulkan-dev libvulkan1 vulkan-tools
libxkbcommon-dev libwayland-dev libxcb1-dev wayland-protocols libxcb-ewmh-dev
libxcb-icccm4-dev libxcb-shm0-dev libxcb-present-dev libxcb-xinput-dev libxcb-xkb-dev
libxkbcommon-x11-dev libx11-dev libx11-xcb-dev
- run: meson setup build/ --backend=ninja -Dexamples=true
env:
CC: gcc
- run: meson compile -C build
linux-clang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Set up Clang
uses: egor-tensin/setup-clang@v1
with:
version: latest
- run: pip install meson ninja
- run: sudo apt-get -y update
- name: Install deps
run: sudo apt-get -y -f install valgrind libvulkan-dev libvulkan1 vulkan-tools
libxkbcommon-dev libwayland-dev libxcb1-dev wayland-protocols libxcb-ewmh-dev
libxcb-icccm4-dev libxcb-shm0-dev libxcb-present-dev libxcb-xinput-dev libxcb-xkb-dev
libxkbcommon-x11-dev libx11-dev libx11-xcb-dev
- run: meson setup build/ --backend=ninja -Dexamples=true
- run: meson compile -C build
linux-clang-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Set up Clang
uses: egor-tensin/setup-clang@v1
with:
version: latest
- run: pip install meson ninja
- run: sudo apt-get -y update
- name: Install deps
run: sudo apt-get -y -f install valgrind libvulkan-dev libvulkan1 vulkan-tools
libxkbcommon-dev libwayland-dev libxcb1-dev wayland-protocols libxcb-ewmh-dev
libxcb-icccm4-dev libxcb-shm0-dev libxcb-present-dev libxcb-xinput-dev libxcb-xkb-dev
libxkbcommon-x11-dev libx11-dev libx11-xcb-dev
- run: meson setup build/ --backend=ninja -Dexamples=true
- run: meson compile -C build
# See https://dvdhrm.github.io/2021/04/21/meson-msvc-github-actions/
windows-ninja:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- run: pip install ninja
# TODO, tmp workaround: See https://github.com/mesonbuild/meson/pull/9918
- run: pip install git+https://github.com/frida/meson.git@f7f25b19a8d71cebf8e2934733eb041eb6862eee
- name: Prepare MSVC
uses: bus1/cabuild/action/msdevshell@v1
with:
architecture: x64
- run: meson setup build/ --backend=ninja -Dexamples=true
- run: meson compile -C build/ -v
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- run: pip install ninja
# TODO, tmp workaround: See https://github.com/mesonbuild/meson/pull/9918
- run: pip install git+https://github.com/frida/meson.git@f7f25b19a8d71cebf8e2934733eb041eb6862eee
- name: Prepare MSVC
uses: bus1/cabuild/action/msdevshell@v1
with:
architecture: x64
- run: meson setup build/ -Dexamples=true
- run: meson compile -C build/ -v
windows-release:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- run: pip install ninja
# TODO, tmp workaround: See https://github.com/mesonbuild/meson/pull/9918
- run: pip install git+https://github.com/frida/meson.git@f7f25b19a8d71cebf8e2934733eb041eb6862eee
- name: Prepare MSVC
uses: bus1/cabuild/action/msdevshell@v1
with:
architecture: x64
- run: meson setup build/ -Dexamples=true
- run: meson compile -C build/ -v
- name: Upload binaries
uses: actions/upload-artifact@v3
with:
name: Windows Binaries
path: |
build/swa.dll
build/swa.lib
build/swa.pdb