-
Notifications
You must be signed in to change notification settings - Fork 1
206 lines (179 loc) · 6.91 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
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
name: CI
on:
schedule:
- cron: '0 0 * * *'
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
inputs:
include_check:
description: 'Include check'
type: boolean
publish:
description: 'Publish'
type: boolean
env:
app_name: StackBlox
jobs:
builds:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
strategy:
fail-fast: false
matrix:
include:
- name: androidarm
os: ubuntu-20.04
clang_version: 12
cppcheck_extra_flags:
- name: androidarm64
os: ubuntu-20.04
clang_version: 12
cppcheck_extra_flags:
- name: ios
os: macos-13
clang_version: 13
cppcheck_extra_flags: --check-level=exhaustive
- name: linux
os: ubuntu-20.04
cppcheck_extra_flags:
- name: macos
os: macos-13
clang_version: 13
cppcheck_extra_flags: --check-level=exhaustive
- name: windows
os: windows-2022
cppcheck_extra_flags:
steps:
- uses: actions/checkout@v4
with:
lfs: 'true'
- name: Print environment variables
run: env
- name: Check formatting
if: contains(matrix.name, 'android')
run: |
clang-format --version
find . -iname "*.cpp" -or -iname "*.h" | xargs clang-format --dry-run --Werror
- name: Install Android key store
if: contains(matrix.name, 'android')
run: |
key_store_path=$HOME/android.jks
gradle_config_dir=$HOME/.gradle
gradle_properties=$gradle_config_dir/gradle.properties
echo "GRADLE_USER_HOME=$gradle_config_dir" >> $GITHUB_ENV
echo "${{ secrets.ANDROID_KEY_STORE }}" | base64 --decode > $key_store_path
mkdir $gradle_config_dir
echo ANDROID_KEY_STORE_PATH=$key_store_path >> $gradle_properties
echo ANDROID_KEY_STORE_PASSWORD=${{ secrets.ANDROID_KEY_STORE_PASSWORD }} >> $gradle_properties
echo ANDROID_KEY_ALIAS=androidUploadKey >> $gradle_properties
echo ANDROID_KEY_PASSWORD=${{ secrets.ANDROID_KEY_PASSWORD }} >> $gradle_properties
- name: 'Download development provisioning profile'
if: matrix.name == 'ios'
uses: apple-actions/download-provisioning-profiles@v3
with:
bundle-id: 'com.dnqpy.${{ env.app_name }}'
profile-type: 'IOS_APP_DEVELOPMENT'
issuer-id: ${{ secrets.APPSTORE_ISSUER_ID }}
api-key-id: ${{ secrets.APPSTORE_KEY_ID }}
api-private-key: ${{ secrets.APPSTORE_PRIVATE_KEY }}
- name: 'Download App Store provisioning profile'
if: matrix.name == 'ios'
uses: apple-actions/download-provisioning-profiles@v3
with:
bundle-id: 'com.dnqpy.${{ env.app_name }}'
profile-type: 'IOS_APP_STORE'
issuer-id: ${{ secrets.APPSTORE_ISSUER_ID }}
api-key-id: ${{ secrets.APPSTORE_KEY_ID }}
api-private-key: ${{ secrets.APPSTORE_PRIVATE_KEY }}
- name: Import Code-Signing Certificates
if: matrix.name == 'ios' || matrix.name == 'macos'
uses: apple-actions/import-codesign-certs@v3
with:
p12-file-base64: ${{ secrets.APPLE_CERTIFICATES }}
p12-password: ${{ secrets.APPLE_CERTIFICATES_PASSWORD }}
- name: Cache Python packages
uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/Library/Caches/pip
~\AppData\Local\pip\Cache
key: pip-${{ runner.os }}
- name: Cache Conan packages
uses: actions/cache@v4
with:
path: ~/.conan2
key: conan-${{ matrix.name }}-${{ hashFiles('conanfile.py', 'profile.jinja') }}
- name: Cache Gradle packages
if: contains(matrix.name, 'android')
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
- name: Set Xcode version
if: matrix.name == 'ios' || matrix.name == 'macos'
run: sudo xcode-select --switch /Applications/Xcode_15.2.app/Contents/Developer
- name: Install required Linux packages
if: contains(matrix.name, 'android') || matrix.name == 'linux'
run: sudo apt-get install cppcheck ninja-build python3-setuptools -y
- name: Install required macOS packages
if: matrix.name == 'ios' || matrix.name == 'macos'
run: brew install cppcheck ninja
- name: Install CMake
uses: ssrobins/install-cmake@main
with:
release-candidate: true
- name: Install Conan
run: |
pip3 install conan --upgrade
conan profile detect --force
- name: Print versions
run: |
cmake --version
conan --version
- name: Run Cppcheck
if: matrix.name != 'windows'
run: |
cppcheck --version
cppcheck . --force --error-exitcode=1 ${{ matrix.cppcheck_extra_flags }}
- name: Configure
run: cmake --preset=${{ matrix.name }} -D CONAN_UPDATE=ON
- name: Build
if: matrix.name != 'ios'
run: |
cmake --build --preset=${{ matrix.name }}Debug
cmake --build --preset=${{ matrix.name }}Release
- name: Test
if: matrix.name == 'linux' || matrix.name == 'macos' || matrix.name == 'windows'
run: |
ctest --preset=${{ matrix.name }}Debug
ctest --preset=${{ matrix.name }}Release
- name: Package
run: |
cpack --preset=${{ matrix.name }}Debug
cpack --preset=${{ matrix.name }}Release
- name: Install 'Include What You Use'
if: matrix.clang_version && github.event.inputs.include_check == 'true'
uses: ssrobins/install-include-what-you-use@main
with:
clang_version: ${{ matrix.clang_version }}
- name: Check includes
if: matrix.clang_version && github.event.inputs.include_check == 'true'
run: cmake --workflow --preset ${{ matrix.name }}Iwyu
- uses: actions/upload-artifact@v4
if: github.event.inputs.include_check != 'true'
with:
name: ${{ env.app_name }}_${{ matrix.name }}_artifact${{ github.run_number }}
path: |
build_${{ matrix.name }}/_package/Release/*.*
!build_${{ matrix.name }}/_package/Release/*.json
if-no-files-found: error
- name: 'Publish to App Store'
if: matrix.name == 'ios' && github.event.inputs.publish == 'true' && github.event.inputs.include_check != 'true'
run: xcrun altool --upload-app --file $(find . -name *.ipa | head -n 1) --type ios --username [email protected] --password ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}