blob: 2d6c2f8d01705dd567f630011152bcb1da85eff0 (
plain)
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
|
name: Linux Validation
on:
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
config: [Release, Debug]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
submodules: recursive
- name: Update machine
run: sudo apt update
- name: Install dependencies
run: sudo apt-get install gcc g++ git cmake ninja-build lsb-release libsdl2-dev libpng-dev libsdl2-net-dev libzip-dev zipcmp zipmerge ziptool nlohmann-json3-dev libtinyxml2-dev libspdlog-dev libboost-dev libopengl-dev libogg-dev libvorbis-dev
- name: Install latest SDL
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
wget https://www.libsdl.org/release/SDL2-2.24.1.tar.gz
tar -xzf SDL2-2.24.1.tar.gz
cd SDL2-2.24.1
./configure
make -j 10
sudo make install
- name: Install latest tinyxml2
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
wget https://github.com/leethomason/tinyxml2/archive/refs/tags/10.0.0.tar.gz
tar -xzf 10.0.0.tar.gz
cd tinyxml2-10.0.0
mkdir -p build
cd build
cmake ..
make
sudo make install
- name: Build
run: |
cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=${{ matrix.config }}
cmake --build build-cmake -j --config ${{ matrix.config }}
- name: Create Package
run: |
mkdir spaghetti-${{ matrix.config }}
mv build-cmake/Spaghettify spaghetti-${{ matrix.config }}/
- name: Publish packaged artifacts
uses: actions/upload-artifact@v4
with:
name: spaghetti-linux-x64-${{ matrix.config }}
path: spaghetti-${{ matrix.config }}
retention-days: 1
build-docker:
runs-on: ubuntu-latest
strategy:
matrix:
config: [Release]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
submodules: recursive
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ hashFiles('script/Dockerfile', 'vcpkg.json') }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Build Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./script/Dockerfile
push: false
load: true
tags: spaghettikart-builder:latest
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
- name: Build project in Docker
run: |
docker run --rm \
-v "${{ github.workspace }}:/project" \
spaghettikart-builder:latest \
bash -c "
cmake -B build -G Ninja \
-DCMAKE_BUILD_TYPE=${{ matrix.config }} \
-DENABLE_VCPKG=ON && \
cmake --build build --parallel && \
make -C torch type=release -j\$(nproc) && \
torch/cmake-build-release/torch pack assets build/spaghetti.o2r o2r
"
- name: Fix permissions
run: sudo chown -R $(id -u):$(id -g) build
- name: Generate AppImage
run: |
docker run --rm \
-v "${{ github.workspace }}:/project" \
spaghettikart-builder:latest \
bash -c "
cd /project/build && \
cpack -G External || true
"
- name: Create Package
run: |
mkdir -p spaghetti-${{ matrix.config }}
wget -O gamecontrollerdb.txt https://raw.githubusercontent.com/mdqinc/SDL_GameControllerDB/master/gamecontrollerdb.txt
mv gamecontrollerdb.txt spaghetti-${{ matrix.config }}/
cp build/*.appimage spaghetti-${{ matrix.config }}/ 2>/dev/null || true
- name: Publish packaged artifacts
uses: actions/upload-artifact@v4
with:
name: spaghetti-linux-docker-x64-${{ matrix.config }}
path: spaghetti-${{ matrix.config }}
retention-days: 7
# Workaround for cache growing too large
- name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache || true
build-docker-x86:
runs-on: ubuntu-latest
strategy:
matrix:
config: [Release]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
submodules: recursive
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache-x86
key: ${{ runner.os }}-buildx-x86-${{ hashFiles('script/Dockerfile.x86', 'vcpkg.json') }}
restore-keys: |
${{ runner.os }}-buildx-x86-
- name: Build Docker image for x86
uses: docker/build-push-action@v5
with:
context: .
file: ./script/Dockerfile.x86
platforms: linux/386
push: false
load: true
tags: spaghettikart-x86:latest
cache-from: type=local,src=/tmp/.buildx-cache-x86
cache-to: type=local,dest=/tmp/.buildx-cache-x86-new,mode=max
- name: Build project in Docker (x86)
run: |
docker run --rm --platform linux/386 \
-v "${{ github.workspace }}:/project" \
spaghettikart-x86:latest \
bash -c "
cmake -B build-x86 -G Ninja \
-DCMAKE_BUILD_TYPE=${{ matrix.config }} && \
cmake --build build-x86 --parallel
"
- name: Fix permissions
run: sudo chown -R $(id -u):$(id -g) build-x86
- name: Create Package
run: |
mkdir -p spaghetti-x86-${{ matrix.config }}
mv build-x86/Spaghettify spaghetti-x86-${{ matrix.config }}/
- name: Publish packaged artifacts
uses: actions/upload-artifact@v4
with:
name: spaghetti-linux-x86-${{ matrix.config }}
path: spaghetti-x86-${{ matrix.config }}
retention-days: 7
- name: Move cache
run: |
rm -rf /tmp/.buildx-cache-x86
mv /tmp/.buildx-cache-x86-new /tmp/.buildx-cache-x86 || true
|