-
Notifications
You must be signed in to change notification settings - Fork 1
214 lines (177 loc) · 7.36 KB
/
build-macos.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
name: Build and Bundle MacOS (x64 and arm64)
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build_macos_x64:
# if: false # This workflow is disabled
runs-on: macos-latest
strategy:
matrix:
arch: [x64]
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Build pksav
run: |
cd deps/pksav/
mkdir build
cd build
cmake .. -DPKSAV_STATIC=ON -DPKSAV_ENABLE_TESTS=OFF -DPKSAV_ENABLE_DOCS=OFF -DCMAKE_BUILD_TYPE=Release
cmake --build . --config "Release"
- name: Build raylib
run: |
cd deps/raylib/src/
make PLATFORM=PLATFORM_DESKTOP
- name: Build Project
run: |
brew install cppcheck
make CI_BUILD=true all
- name: Run cppcheck
run: |
cppcheck --std=c11 --enable=all --inconclusive --suppress=missingInclude --suppress=missingIncludeSystem --suppress=unusedFunction src/ || true
- name: Copy assets
run: |
mkdir build/assets
cp -r assets build
- name: Publish Build Artifacts
uses: actions/upload-artifact@v3
with:
name: "pokeromtrader-artifacts-x64"
path: build/ # Specify the directory containing your build artifacts
build_macos_arm64:
# if: false # This workflow is disabled
runs-on: macos-latest
strategy:
matrix:
arch: [arm64]
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Build pksav
run: |
cd deps/pksav/
mkdir build
cd build
cmake .. -DPKSAV_STATIC=ON -DPKSAV_ENABLE_TESTS=OFF -DPKSAV_ENABLE_DOCS=OFF
make
- name: Build raylib
run: |
cd deps/raylib/src/
make PLATFORM=PLATFORM_DESKTOP
- name: Build Project
run: |
brew install cppcheck
make CI_BUILD=true all
- name: Run cppcheck
run: |
cppcheck --std=c11 --enable=all --inconclusive --suppress=missingInclude --suppress=missingIncludeSystem --suppress=unusedFunction src/ || true
- name: Copy assets
run: |
mkdir build/assets
cp -r assets build
- name: Publish Build Artifacts
uses: actions/upload-artifact@v3
with:
name: "pokeromtrader-artifacts-arm64"
path: build/ # Specify the directory containing your build artifacts
bundle_macos_arm64:
runs-on: macos-latest
needs: build_macos_arm64 # Ensure that the 'build' job is completed before this one starts
steps:
- name: Download Build Artifact
# Download the build artifact from the 'build' job
uses: actions/download-artifact@v2
with:
name: "pokeromtrader-artifacts-arm64" # Specify the name of the build artifact
- name: Bundle macOS Release
run: |
# You can access the downloaded artifact in the current directory
BUILD_DIR="build"
MACOS_DESTINATION="${BUILD_DIR}/macos/PokeromTrader.app/Contents/MacOS"
APP_BUNDLE_EXECUTABLE="pokeromtrader"
APP_BUNDLE_ID="com.yourcompany.pokeromtrader"
APP_BUNDLE_NAME="PokeromTrader"
INFO_PLIST="${BUILD_DIR}/macos/PokeromTrader.app/Contents/Info.plist"
# Create the build directory if it doesn't exist
mkdir -p "${BUILD_DIR}"
# Create the directory structure
mkdir -p "${MACOS_DESTINATION}"
# Copy the executable to the .app bundle
cp "${{ github.workspace }}/pokeromtrader" "${MACOS_DESTINATION}/pokeromtrader"
# Copy assets
mkdir -p "${MACOS_DESTINATION}/../Resources/assets"
cp "${{ github.workspace }}/assets/icon.icns" "${MACOS_DESTINATION}/../Resources"
# Create Info.plist file
echo '<?xml version="1.0" encoding="UTF-8"?>' > "${INFO_PLIST}"
echo '<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">' >> "${INFO_PLIST}"
echo '<plist version="1.0">' >> "${INFO_PLIST}"
echo '<dict>' >> "${INFO_PLIST}"
echo ' <key>CFBundleExecutable</key>' >> "${INFO_PLIST}"
echo " <string>${APP_BUNDLE_EXECUTABLE}</string>" >> "${INFO_PLIST}"
echo ' <key>CFBundleIdentifier</key>' >> "${INFO_PLIST}"
echo " <string>${APP_BUNDLE_ID}</string>" >> "${INFO_PLIST}"
echo ' <key>CFBundleName</key>' >> "${INFO_PLIST}"
echo " <string>${APP_BUNDLE_NAME}</string>" >> "${INFO_PLIST}"
echo " <key>CFBundleIconFile</key>" >> "${INFO_PLIST}"
echo " <string>icon</string>" >> "${INFO_PLIST}"
echo '</dict>' >> "${INFO_PLIST}"
echo '</plist>' >> "${INFO_PLIST}"
echo "macOS release bundle created"
- name: Upload macOS Release
uses: actions/upload-artifact@v2
with:
name: "pokeromtrader-macos-arm64" # Specify a name for your macOS release
path: build/macos
bundle_macos_x64:
runs-on: macos-latest
needs: build_macos_x64 # Ensure that the 'build' job is completed before this one starts
steps:
- name: Download Build Artifact
# Download the build artifact from the 'build' job
uses: actions/download-artifact@v2
with:
name: "pokeromtrader-artifacts-x64" # Specify the name of the build artifact
- name: Bundle macOS Release
run: |
# You can access the downloaded artifact in the current directory
BUILD_DIR="build"
MACOS_DESTINATION="${BUILD_DIR}/macos/PokeromTrader.app/Contents/MacOS"
APP_BUNDLE_EXECUTABLE="pokeromtrader"
APP_BUNDLE_ID="com.yourcompany.pokeromtrader"
APP_BUNDLE_NAME="PokeromTrader"
INFO_PLIST="${BUILD_DIR}/macos/PokeromTrader.app/Contents/Info.plist"
# Create the build directory if it doesn't exist
mkdir -p "${BUILD_DIR}"
# Create the directory structure
mkdir -p "${MACOS_DESTINATION}"
# Copy the executable to the .app bundle
cp "${{ github.workspace }}/pokeromtrader" "${MACOS_DESTINATION}/pokeromtrader"
# Copy assets
mkdir -p "${MACOS_DESTINATION}/../Resources/assets"
cp "${{ github.workspace }}/assets/icon.icns" "${MACOS_DESTINATION}/../Resources"
# Create Info.plist file
echo '<?xml version="1.0" encoding="UTF-8"?>' > "${INFO_PLIST}"
echo '<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">' >> "${INFO_PLIST}"
echo '<plist version="1.0">' >> "${INFO_PLIST}"
echo '<dict>' >> "${INFO_PLIST}"
echo ' <key>CFBundleExecutable</key>' >> "${INFO_PLIST}"
echo " <string>${APP_BUNDLE_EXECUTABLE}</string>" >> "${INFO_PLIST}"
echo ' <key>CFBundleIdentifier</key>' >> "${INFO_PLIST}"
echo " <string>${APP_BUNDLE_ID}</string>" >> "${INFO_PLIST}"
echo ' <key>CFBundleName</key>' >> "${INFO_PLIST}"
echo " <string>${APP_BUNDLE_NAME}</string>" >> "${INFO_PLIST}"
echo " <key>CFBundleIconFile</key>" >> "${INFO_PLIST}"
echo " <string>icon</string>" >> "${INFO_PLIST}"
echo '</dict>' >> "${INFO_PLIST}"
echo '</plist>' >> "${INFO_PLIST}"
echo "macOS release bundle created"
- name: Upload macOS Release
uses: actions/upload-artifact@v2
with:
name: "pokeromtrader-macos-x64"
path: build/macos