forked from LibreCAD/LibreCAD
-
Notifications
You must be signed in to change notification settings - Fork 2
305 lines (267 loc) · 8.67 KB
/
build-all.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
name: Continuous build
on:
push:
branches:
- master
- 2.2.1
jobs:
BuildLinux:
runs-on: ubuntu-20.04
outputs:
output1: ${{ steps.artifact-upload-step.outputs.artifact-id }}
steps:
- name: Checkout code
uses: actions/checkout@main
with:
fetch-depth: 0
- name: Install Qt6
uses: jurplel/install-qt-action@v3
with:
version: '6.6.*'
modules: 'qt5compat'
- name: Qt6 path
run: |
find ${{github.workspace}}/../Qt -type f -iname "*.so"
ls -l ${{github.workspace}}/../Qt
- name: Install Qt and dependencies
run: |
sudo apt-get -y update
sudo apt-get -qq install qtchooser libgl-dev libxcb-cursor0 libmuparser-dev libboost-dev librsvg2-bin libfreetype6-dev libicu-dev pkg-config libfuse2
sudo ln -snf /usr/lib/x86_64-linux-gnu/qtchooser/qt5.conf /usr/lib/x86_64-linux-gnu/qtchooser/default.conf
sudo rm -rf /usr/local/lib/android
find /home/runner/work/LibreCAD/Qt/6.6.3 -iname "libqt*svg*"
- name: Install Clang
run: |
sudo apt-get -qq install clang-10 clang-tools-10
- name: Set Dark splash
# Test setting dark splash screen for `2.2.2_alpha`,
# then switch "Loading..." label text color to white.
# Comment this if `master` is used for releases.
if: github.ref == 'refs/heads/master'
run: |
cp ${{github.workspace}}/desktop/media/splash/librecad01_dark.png ${{github.workspace}}/librecad/res/main/splash_librecad.png
sed -i 's/Qt::black/Qt::white/g' ${{github.workspace}}/librecad/src/main/main.cpp
- name: Build and analyze
run: |
export CC=g++
export ANALYZE="scan-build-10 -o out --use-cc=/usr/bin/clang++ --use-analyzer=/usr/bin/clang++ "
${ANALYZE}qmake6 -r librecad.pro CONFIG+=debug_and_release PREFIX=/usr
${ANALYZE}make release -j$(nproc)
- name: Create report repository
run: |
cd out
find . -mindepth 2 -type f -print -exec mv {} . \;
git config --global user.email "[email protected]"
git config --global user.name "GHA CI [bot]"
git config --global init.defaultBranch gh-pages
git init
git add .
git commit -m "latest analyzer report"
- name: Push changes
if: github.repository_owner == 'LibreCAD'
uses: ad-m/github-push-action@master
with:
repository: ${{ github.repository_owner }}/static-analyzer-reports
github_token: ${{ secrets.LC_PUSH_ANALYZER_REPORT }}
branch: gh-pages
force: true
directory: out
- name: Create AppImage
run: |
#find unix/
QT_FILE_DIR="${{github.workspace}}/../Qt" ./CI/build-appimg.sh
mv LibreCAD*.AppImage LibreCAD-`git describe --always`.AppImage
- name: List files
run: |
echo ${{ github.workspace }} && ls ${{ github.workspace }}
shell: bash
- name: Upload artifact
id: artifact-upload-step
uses: actions/upload-artifact@main
with:
name: linuxAssets
path: LibreCAD*.AppImage
retention-days: 2
BuildSnap:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@main
with:
fetch-depth: 0
ref: master
- name: install snap
uses: samuelmeuli/action-snapcraft@v2
- name: Create snapcraft
run: |
pwd
ls
ls scripts
bash ./scripts/createSnap.sh
mv librecad*.snap LibreCAD-`git describe --always`.snap
- name: Uploading snap
uses: actions/upload-artifact@v4
with:
name: snapAssets
path: ${{github.workspace}}/LibreCAD*.snap
retention-days: 2
BuildMacOS:
runs-on: macos-14
outputs:
output1: ${{ steps.artifact-upload-step.outputs.artifact-id }}
steps:
- name: Checkout code
uses: actions/checkout@main
with:
fetch-depth: 0
- name: uninstall p7zip
run: |
brew uninstall p7zip
- name: Install Qt6
uses: jurplel/install-qt-action@v3
with:
version: '6.6.*'
modules: 'qt5compat'
- name: Install boost dependencies
run: |
brew install boost
# XProtect can cause random failures if it decides that the DMG we create
# during the packaging phase is malware.
# TODO: Do it in a cleaner way
# Inspiration: https://github.com/servo/servo/pull/30779
- name: Kill XProtectBehaviorService
run: |
echo Killing XProtect.; sudo pkill -9 XProtect >/dev/null || true;
- name: Build and packaging
run: |
scripts/build-osx.sh
mv LibreCAD.dmg LibreCAD-`git describe --always`.dmg
- name: Upload artifact
id: artifact-upload-step
uses: actions/upload-artifact@main
with:
name: macOSAssets
path: LibreCAD*.dmg
retention-days: 2
BuildWindows64:
runs-on: windows-2022
outputs:
output1: ${{ steps.artifact-upload-step.outputs.artifact-id }}
steps:
- name: Checkout code
uses: actions/checkout@main
with:
fetch-depth: 0
- name: Uninstall incorrect mingw
run: |
choco uninstall mingw --force
choco uninstall strawberryperl --force
- name: Install Qt6
uses: jurplel/install-qt-action@v3
with:
version: '6.6.*'
host: 'windows'
arch: 'win64_mingw'
target: 'desktop'
dir: '..'
install-deps: 'true'
cache: 'false'
cache-key-prefix: 'install-qt-action'
setup-python: 'true'
set-env: 'true'
tools-only: 'false'
extra: '--external 7z'
modules: 'qt5compat'
- name: install mingw-1120
run: |
aqt install-tool windows desktop tools_mingw90
- name: list folders
run: |
where qmake6.exe
where g++.exe
where mingw32-make.exe
- name: Install boost
shell: bash
run: |
curl -# -L -o boost.7z https://boostorg.jfrog.io/artifactory/main/release/1.83.0/source/boost_1_83_0.7z
7z x -o. -y boost.7z
mv boost_1_83_0 ../boost
rm boost.7z
- name: Debugging
if: ${{ always() }}
shell: cmd
run: |
set
echo.
dir c:\
echo.
dir d:\
echo.
dir d:\a
echo.
dir
echo.
dir ..
echo.
dir ..\boost
dir ..\Qt\6.6.3\mingw_64\bin
echo.
dir /b /s ..\Qt
where qmake6.exe
where mingw32-make.exe
where make.exe
where g++
- name: Build
run: |
set PATH=${{ github.workspace }}\Tools\mingw1120_64\bin;${{ github.workspace }}\Qt\6.6.3\mingw_64\bin;%PATH%
copy CI\custom-win.pri custom.pri
copy CI\custom-win-x64.nsh scripts\postprocess-windows\custom.nsh
echo SET:
set
pushd "${{ github.workspace }}\scripts"
build-windows.bat
shell: cmd
- name: Rename installer
run: |
mv generated/LibreCAD-Installer.exe LibreCAD-`git describe --always`-win64.exe
shell: bash
- name: List files
run: |
echo "${{ github.workspace }}"
dir "${{ github.workspace }}"
shell: cmd
- name: Upload artifact
id: artifact-upload-step
uses: actions/upload-artifact@main
with:
name: win64Assets
path: LibreCAD*.exe
retention-days: 2
UpdateAssets:
if: github.repository_owner == 'LibreCAD'
needs: [BuildLinux, BuildMacOS, BuildWindows64, BuildSnap]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@main
with:
fetch-depth: 0
- name: Delete existing
run: gh release delete "2.2.2_alpha-latest" -y
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Fetch artifacts
uses: actions/download-artifact@main
- name: Upload latest pre-release
uses: softprops/action-gh-release@v2
with:
name: "Continuous Build: latest development"
tag_name: "2.2.2_alpha-latest"
prerelease: true
draft: false
files: |
linuxAssets/LibreCAD*.AppImage
macOSAssets/LibreCAD*.dmg
win64Assets/LibreCAD*.exe
snapAssets/LibreCAD*.snap
LICENSE