-
Notifications
You must be signed in to change notification settings - Fork 9
154 lines (137 loc) · 5.52 KB
/
main.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
name: Build
on: [push, pull_request, workflow_dispatch]
jobs:
windows:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- name: 'Sync source code'
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install Dependencies
uses: msys2/setup-msys2@v2
with:
install: make mingw-w64-x86_64-meson mingw-w64-x86_64-ninja mingw-w64-x86_64-pkg-config mingw-w64-x86_64-gcc mingw-w64-x86_64-SDL2 mingw-w64-x86_64-glew
- name: Build Hades
run: |
meson build -Dstatic_executable=true
cd build
ninja
- name: Test Hades
run: |
./build/Hades.exe --help
- name: Collect Artifacts
uses: actions/upload-artifact@v2
with:
name: hades-win64
path: build/Hades.exe
if-no-files-found: error
mac-os:
runs-on: macos-latest
steps:
- name: 'Sync source code'
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install Dependencies
run: |
brew install meson ninja sdl2 glew create-dmg
- name: Build Hades
run: |
rm -rf /tmp/build/
mkdir -p /tmp/build/Hades.app
meson --buildtype=release --prefix=/tmp/build/Hades.app --bindir=Contents/MacOS build --werror
ninja -C build install
chmod +x /tmp/build/Hades.app/Contents/MacOS/hades /tmp/build/Hades.app/Contents/MacOS/run.sh
otool -L /tmp/build/Hades.app/Contents/MacOS/hades
cp /usr/local/opt/sdl2/lib/libSDL2-2.0.0.dylib /tmp/build/Hades.app/Contents/MacOS/
install_name_tool -change /usr/local/opt/sdl2/lib/libSDL2-2.0.0.dylib @executable_path/libSDL2-2.0.0.dylib /tmp/build/Hades.app/Contents/MacOS/hades
cp /usr/local/opt/glew/lib/libGLEW.2.2.dylib /tmp/build/Hades.app/Contents/MacOS/
install_name_tool -change /usr/local/opt/glew/lib/libGLEW.2.2.dylib @executable_path/libGLEW.2.2.dylib /tmp/build/Hades.app/Contents/MacOS/hades
- name: Test Hades
run: |
/tmp/build/Hades.app/Contents/MacOS/hades --help
- name: Sign Hades App
# Only run if a certificate is set
if: ${{ env.MACOS_CODESIGN_CRT != '' && env.MACOS_CODESIGN_CRT_IDENTITY != '' }}
run: |
# Create keychain with certificate to use to sign the binaries.
echo "$MACOS_CODESIGN_CRT" | base64 -d > certificate.p12
security create-keychain -p test123 build.keychain
security default-keychain -s build.keychain
security unlock-keychain -p test123 build.keychain
security import certificate.p12 -k build.keychain -P "$MACOS_CODESIGN_CRT_PWD" -T /usr/bin/codesign
# Delete certificate to avoid leaking it to next steps
rm certificate.p12
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k test123 build.keychain
echo "Signing file /tmp/build/Hades.app"
/usr/bin/codesign --deep --force -s "$MACOS_CODESIGN_CRT_IDENTITY" --options runtime "/tmp/build/Hades.app" -v
# Get rid of the keychain containing certificate to avoid leaking it
# to next steps.
security lock-keychain build.keychain
security default-keychain -s
security delete-keychain build.keychain
env:
MACOS_CODESIGN_CRT: ${{ secrets.MACOS_CODESIGN_CRT }}
MACOS_CODESIGN_CRT_PWD: ${{ secrets.MACOS_CODESIGN_CRT_PWD }}
MACOS_CODESIGN_CRT_IDENTITY: ${{ secrets.MACOS_CODESIGN_CRT_IDENTITY }}
- name: Pack Hades
run: |
rm -rf Hades.dmg
pwd
create-dmg \
--volname "Hades Installer" \
--volicon ./resource/macos/hades.icns \
--background ./resource/macos/background.png \
--window-pos 200 120 \
--window-size 575 360 \
--icon-size 100 \
--icon Hades.app 150 225 \
--hide-extension Hades.app \
--app-drop-link 425 225 \
Hades-Installer.dmg \
/tmp/build/
- name: Notarize Hades DMG
if: ${{ env.MACOS_APPLE_USERNAME != '' }}
run: |
echo "Notarizing file $file"
xcrun notarytool submit --apple-id "$MACOS_APPLE_USERNAME" --password "$MACOS_APPLE_PASSWORD" --team-id "$MACOS_APPLE_TEAMID" --wait "Hades-Installer.dmg"
xcrun stapler staple -v "Hades-Installer.dmg"
env:
MACOS_APPLE_USERNAME: ${{ secrets.MACOS_APPLE_USERNAME }}
MACOS_APPLE_PASSWORD: ${{ secrets.MACOS_APPLE_PASSWORD }}
MACOS_APPLE_TEAMID: ${{ secrets.MACOS_APPLE_TEAMID }}
- name: Collect Artifacts
uses: actions/upload-artifact@v2
with:
name: hades-macos
path: Hades-Installer.dmg
if-no-files-found: error
linux:
runs-on: ubuntu-latest
steps:
- name: 'Sync source code'
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y meson ninja-build libsdl2-dev libglew-dev libgtk-3-dev
- name: Build Hades
run: |
meson build --werror
cd build
ninja
- name: Test Hades
run: |
./build/hades --help
- name: Collect Artifacts
uses: actions/upload-artifact@v2
with:
name: hades-linux
path: build/hades
if-no-files-found: error