-
-
Notifications
You must be signed in to change notification settings - Fork 577
215 lines (189 loc) · 8.33 KB
/
macos.yml
File metadata and controls
215 lines (189 loc) · 8.33 KB
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
# SuperTux
# Copyright (C) 2020-2021 Jacob Burroughs <maths22@gmail.com>
# 2020-2022 A. Semphris <semphris@protonmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
name: MacOS
on:
workflow_dispatch:
push:
branches:
- master
tags:
- '*'
pull_request: {}
jobs:
macos:
strategy:
fail-fast: false
matrix:
os: [macos-14]
build_type: [Debug, Release]
arch: [arm64, x86_64]
include:
- os: macos-14
build_type: Release
arch: arm64
release: ON
- os: macos-14
build_type: Release
arch: x86_64
release: ON
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
# Fetch the whole tree so git describe works
fetch-depth: 0
submodules: recursive
- name: Install macos dependencies (ARM)
if: ${{ matrix.os == 'macos-14' && matrix.arch == 'arm64' }}
run: |
brew install cmake bash rename libogg libvorbis glew glm \
openal-soft sdl2 sdl2_image libraqm freetype libpng \
glib gtk-doc zlib physfs fmt
install_name_tool -change \
'@rpath/libsharpyuv.0.dylib' \
/opt/homebrew/opt/webp/lib/libsharpyuv.0.dylib \
/opt/homebrew/opt/webp/lib/libwebp.7.dylib
install_name_tool -change \
'@rpath/libjxl_cms.0.11.dylib' \
/opt/homebrew/opt/jpeg-xl/lib/libjxl_cms.0.11.dylib \
/opt/homebrew/opt/jpeg-xl/lib/libjxl.dylib
# Something funky happens with freetype if mono is left
sudo mv /Library/Frameworks/Mono.framework \
/Library/Frameworks/Mono.framework-disabled
- name: Install macos dependencies (Intel)
if: ${{ matrix.os == 'macos-14' && matrix.arch == 'x86_64' }}
run: |
# Install x86_64 Homebrew and dependencies using Rosetta 2
arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Remove pre-installed Python symlinks that conflict with Homebrew Python
sudo rm -f /usr/local/bin/idle3* /usr/local/bin/pip3* /usr/local/bin/pydoc3* /usr/local/bin/python3* || true
arch -x86_64 /usr/local/bin/brew install cmake bash rename libogg libvorbis glew glm \
openal-soft sdl2 sdl2_image libraqm freetype libpng \
glib gtk-doc zlib physfs fmt
install_name_tool -change \
'@rpath/libsharpyuv.0.dylib' \
/usr/local/opt/webp/lib/libsharpyuv.0.dylib \
/usr/local/opt/webp/lib/libwebp.7.dylib
install_name_tool -change \
'@rpath/libjxl_cms.0.11.dylib' \
/usr/local/opt/jpeg-xl/lib/libjxl_cms.0.11.dylib \
/usr/local/opt/jpeg-xl/lib/libjxl.dylib
# Something funky happens with freetype if mono is left
sudo mv /Library/Frameworks/Mono.framework \
/Library/Frameworks/Mono.framework-disabled
- name: Set compiler
run: |
# This ensures for now we use clang11
# Clang12 runs into a bunch of fun with `include location
# '/usr/local/include' is unsafe for cross-compilation` that we don't
# care about for now
echo "CXX=clang++" >> $GITHUB_ENV
echo "CC=clang" >> $GITHUB_ENV
- name: Run slugify
id: slugify
uses: eltimn/slugify-action@v2.0.2
- name: Configure build
env:
# Using git rev-parse gives incorrect values when querying the branch
# so, use slugify instead
GIT_HASH: ${{ steps.slugify.outputs.sha }}
GIT_BRANCH: ${{ steps.slugify.outputs.branch }}
BUILD_TYPE: ${{ matrix.build_type }}
BUILD_ARCH: ${{ matrix.arch }}
run: |
GIT_TAG="$(git describe --tags --abbrev=0 --always)"
echo "Git information:"
echo "- GIT_TAG: $GIT_TAG"
echo "- GIT_HASH: $GIT_HASH"
echo "- GIT_BRANCH: $GIT_BRANCH"
echo "- BUILD_ARCH: $BUILD_ARCH"
cmake --version
$CXX --version
mkdir "build"
cd "build"
# Set architecture-specific flags and PKG_CONFIG_PATH
CMAKE_ARCH_FLAGS=""
if [ "$BUILD_ARCH" = "x86_64" ]; then
CMAKE_ARCH_FLAGS="-DCMAKE_OSX_ARCHITECTURES=x86_64 -DCMAKE_OSX_DEPLOYMENT_TARGET=12.0 -DCMAKE_PREFIX_PATH=/usr/local"
export PKG_CONFIG_PATH="/usr/local/opt/openal-soft/lib/pkgconfig:/usr/local/opt/zlib/lib/pkgconfig:/usr/local/opt/freetype/lib/pkgconfig:/usr/local/opt/libpng/lib/pkgconfig"
else
export PKG_CONFIG_PATH="/opt/homebrew/opt/openal-soft/lib/pkgconfig:/opt/homebrew/opt/zlib/lib/pkgconfig"
fi
cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE $CMAKE_ARCH_FLAGS \
-DGIT_HASH="$GIT_HASH" -DGIT_BRANCH="$GIT_BRANCH" \
-DCMAKE_INSTALL_PREFIX=/usr -DINSTALL_SUBDIR_BIN=bin \
-DINSTALL_SUBDIR_SHARE=share/supertux2 \
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
- name: Build and install
working-directory: build
run: |
make -j3 VERBOSE=1
make install DESTDIR="/tmp/supertux" VERBOSE=1
#- name: Run tests
# working-directory: build
# run: ./test_supertux2
- name: Package
env:
OS_NAME: ${{ matrix.os }}
ARCH: 64
COMPILER_NAME: ${{ matrix.compiler }}
BUILD_NAME: ${{ matrix.build_type }}
PACKAGE: 'ON'
working-directory: build
run: ../.ci_scripts/package.sh
- uses: actions/upload-artifact@v4
if: matrix.build_type != 'Debug'
with:
name: "${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.build_type }}-${{ steps.slugify.outputs.branch }}-${{ steps.slugify.outputs.sha }}-dmg"
path: build/upload/*.dmg
if-no-files-found: ignore
- uses: parth-paradkar/upload-s3-without-acl@68848b62953464adb87bd48793f7ec58b8af427c
if: matrix.release && env.CI_KEY != null
env:
CI_KEY: ${{ secrets.CI_DOWNLOAD_ACCESS_KEY_ID }}
with:
aws_bucket: supertux-ci-downloads
aws_key_id: ${{ secrets.CI_DOWNLOAD_ACCESS_KEY_ID }}
aws_secret_access_key: ${{ secrets.CI_DOWNLOAD_SECRET_ACCESS_KEY }}
source_dir: 'build/upload'
destination_dir: "ci-build/${{ github.sha }}/gh-actions/${{ matrix.os }}-${{ matrix.arch }}/${{ github.run_id }}"
- name: Post uploaded file
if: matrix.release && env.DOWNLOAD_APIKEY != null
working-directory: build
run: ../.ci_scripts/deploy.sh
env:
PREFIX: "ci-build/${{ github.sha }}/gh-actions/${{ matrix.os }}-${{ matrix.arch }}/${{ github.run_id }}"
DOWNLOAD_APIKEY: ${{ secrets.DOWNLOAD_APIKEY }}
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
- name: Prepare Release
if: startsWith(github.ref, 'refs/tags/') && matrix.release
env:
BUILD_ARCH: ${{ matrix.arch }}
run: |
if [ "$BUILD_ARCH" = "arm64" ]; then
rename 's/arm64-Darwin.dmg/Darwin-arm64.dmg/' build/upload/SuperTux-*
elif [ "$BUILD_ARCH" = "x86_64" ]; then
rename 's/x86_64-Darwin.dmg/Darwin-x86_64.dmg/' build/upload/SuperTux-*
fi
- name: Create Release
if: startsWith(github.ref, 'refs/tags/') && matrix.release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: 'build/upload/SuperTux-*'
draft: true