forked from vlang/sdl
-
Notifications
You must be signed in to change notification settings - Fork 0
218 lines (182 loc) · 5.71 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
name: General CI
on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
jobs:
ubuntu-tcc:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
VFLAGS: -cc tcc -no-retry-compilation
SDL2_VERSION: 2.0.8
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install --quiet -y libsdl2-dev libsdl2-ttf-dev
sudo apt-get install --quiet -y libsdl2-mixer-dev libsdl2-image-dev
curl -L https://www.libsdl.org/release/SDL2-${SDL2_VERSION}.tar.gz -o SDL2.tar.gz
tar -zxvf SDL2.tar.gz
- name: Build SDL
run: |
cd SDL2-${SDL2_VERSION}
mkdir build
cd build
../configure --prefix /tmp/sdl2-${SDL2_VERSION}
make
make install
- name: Install V
uses: vlang/setup-v@v1
with:
check-latest: true
- name: Checkout SDL
uses: actions/checkout@v2
with:
path: sdl
- name: Link local SDL folder in ~/.vmodules/sdl
run: |
cd sdl
mkdir -p ~/.vmodules
ln -s $(pwd) ~/.vmodules/sdl
- name: Test code formatting
run: |
cd sdl
v test-fmt
v fmt -verify .
- name: Build sdl shared
run: |
export CFLAGS="$(/tmp/sdl2-${SDL2_VERSION}/bin/sdl2-config --cflags --libs)"
v -shared -g sdl
- name: Run tests
run: v test sdl
- name: Build sdl examples
run: |
v shader sdl/examples/sdl_opengl_and_sokol
export CFLAGS="$(/tmp/sdl2-${SDL2_VERSION}/bin/sdl2-config --cflags --libs)"
v run sdl/examples/versions
v should-compile-all sdl/examples/
- name: Test SDL version
run: |
export CFLAGS="$(/tmp/sdl2-${SDL2_VERSION}/bin/sdl2-config --cflags --libs)"
VER="$(v run sdl/examples/version)"
echo "${SDL2_VERSION} == $VER ?"
test "${SDL2_VERSION}" = "$VER" || exit 1
macos:
runs-on: macos-12
timeout-minutes: 60
env:
SDL2_VERSION: 2.0.8
steps:
- name: Checkout V
uses: actions/checkout@v2
with:
repository: vlang/v
- name: Build local v
run: make -j4 && ./v symlink
- name: Install dependencies
run: |
brew install sdl2_ttf sdl2_mixer sdl2_image
curl -L https://www.libsdl.org/release/SDL2-${SDL2_VERSION}.tar.gz -o SDL2.tar.gz
tar -zxvf SDL2.tar.gz
- name: Build SDL
run: |
cd SDL2-${SDL2_VERSION}
mkdir build
cd build
../configure --prefix /tmp/sdl2-${SDL2_VERSION}
make
make install
- name: Checkout SDL
uses: actions/checkout@v2
with:
path: sdl
- name: Link local SDL folder in ~/.vmodules/sdl
run: |
cd sdl
mkdir -p ~/.vmodules
ln -s $(pwd) ~/.vmodules/sdl
- name: Test code formatting
run: |
cd sdl
VJOBS=1 v test-fmt
VJOBS=1 v fmt -verify .
- name: Build sdl shared
run: |
export CFLAGS="$(/tmp/sdl2-${SDL2_VERSION}/bin/sdl2-config --cflags --libs)"
v -shared -g sdl
- name: Run tests
run: v test sdl
- name: Build sdl examples
run: |
v shader sdl/examples/sdl_opengl_and_sokol
export CFLAGS="$(/tmp/sdl2-${SDL2_VERSION}/bin/sdl2-config --cflags --libs)"
v run sdl/examples/versions
v should-compile-all sdl/examples/
- name: Test SDL version
run: |
export CFLAGS="$(/tmp/sdl2-${SDL2_VERSION}/bin/sdl2-config --cflags --libs)"
VER="$(v run sdl/examples/version)"
echo "${SDL2_VERSION} == $VER ?"
test "${SDL2_VERSION}" = "$VER" || exit 1
windows-gcc:
runs-on: windows-latest
timeout-minutes: 30
env:
VFLAGS: -cc gcc -no-retry-compilation
SDL2_VERSION: 2.0.8
steps:
- name: Install V
uses: vlang/setup-v@v1
with:
check-latest: true
- name: Checkout SDL
uses: actions/checkout@v2
with:
path: sdl
- name: Run tests
run: v test sdl
- name: Install dependencies
run: v run sdl/windows_install_dependencies.vsh
- name: Move SDL folder to ~/.vmodules/sdl
run: |
move-item -force sdl $home\.vmodules\
- name: Build sdl examples
run: |
$sdl_home = "$home\.vmodules\sdl"
copy-item $sdl_home\thirdparty\SDL2-${env:SDL2_VERSION}\lib\x64\SDL2.dll $sdl_home\examples\versions\
v run $sdl_home\examples\versions
v shader $sdl_home\examples\sdl_opengl_and_sokol
v should-compile-all $sdl_home\examples\
windows-tcc:
runs-on: windows-latest
timeout-minutes: 30
env:
VFLAGS: -cc tcc -no-retry-compilation
SDL2_VERSION: 2.0.8
steps:
- name: Install V
uses: vlang/setup-v@v1
with:
check-latest: true
- name: Checkout SDL
uses: actions/checkout@v2
with:
path: sdl
- name: Run tests
run: v test sdl
- name: Install dependencies
run: v run sdl/windows_install_dependencies.vsh
- name: Move SDL folder to ~/.vmodules/sdl
run: |
move-item -force sdl $home\.vmodules\
- name: Build sdl examples
run: |
$sdl_home = "$home\.vmodules\sdl"
copy-item $sdl_home\thirdparty\SDL2-${env:SDL2_VERSION}\lib\x64\SDL2.dll $sdl_home\examples\versions\
v run $sdl_home\examples\versions
v shader $sdl_home\examples\sdl_opengl_and_sokol
v should-compile-all $sdl_home\examples\