-
Notifications
You must be signed in to change notification settings - Fork 0
185 lines (176 loc) · 5.38 KB
/
build.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
name: build
on:
push:
branches: [ "master", "develop" ]
tags:
- 'v*'
pull_request:
branches: [ "master", "develop" ]
env:
BUILD_TYPE: Release
PROGNAME: atom-architect
EXEC: atom-architect.exe
jobs:
#
# (optional) Create release
#
create-release:
runs-on: ubuntu-latest
permissions: write-all
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
#
# Ubuntu
#
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install packages
run: |
sudo apt update && sudo apt install -y qt6-tools-dev qt6-base-dev libqt6charts6-dev libqt6widgets6 libqt6gui6 libqt6opengl6-dev libgl1-mesa-dev build-essential cmake
- name: Configure CMake
run: |
mkdir build
cd build
cmake ..
- name: Build
run: |
cd build
make -j
#
# Debian 12
#
build-debian12:
runs-on: ubuntu-latest
container:
image: debian:12
steps:
- uses: actions/checkout@v3
- name: Install packages
run: |
apt update && apt install -y qt6-tools-dev qt6-base-dev libqt6charts6-dev libqt6widgets6 libqt6gui6 libqt6opengl6-dev libgl1-mesa-dev build-essential cmake
- name: Configure CMake
run: |
mkdir build
cd build
cmake ..
- name: Build
run: |
cd build
make -j
#
# Windows
#
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '6.7.0'
target: 'desktop'
arch: 'win64_msvc2019_64'
modules: 'qtcharts'
cache: true
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -S ${{github.workspace}} -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Upload executable
uses: actions/upload-artifact@v3
with:
name: ${{env.EXEC}}
path: ${{github.workspace}}/build/Release/${{env.EXEC}}
# create packaging metadata
prepare-installer-windows:
runs-on: ubuntu-latest
needs: build-windows
permissions: write-all
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: sudo apt-get update && sudo apt-get install -y python3 python3-jinja2
- name: run packaging script
run: python3 packaging/package.py
- name: Upload packaging scripts
uses: actions/upload-artifact@v3
with:
name: package-metadata
path: |
${{github.workspace}}/packaging/config/config.xml
${{github.workspace}}/packaging/packages/com.vendor.product/meta/installscript.qs
${{github.workspace}}/packaging/packages/com.vendor.product/meta/package.xml
# create Windows installer
create-installer-windows:
runs-on: windows-latest
needs: prepare-installer-windows
permissions: write-all
steps:
- uses: actions/checkout@v3
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '6.7.0'
target: 'desktop'
arch: 'win64_msvc2019_64'
modules: 'qtcharts'
tools: 'tools_ifw'
cache: true
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: ${{env.EXEC}}
path: packaging/packages/com.vendor.product/data/
- name: Download installer metadata
uses: actions/download-artifact@v3
with:
name: package-metadata
path: ${{github.workspace}}/packaging
- name: Get dependencies
run: windeployqt.exe packaging\packages\com.vendor.product\data\${{env.EXEC}} --release --force
- name: Copy assets
run: copy assets\icon\atom_architect_256.ico packaging\packages\com.vendor.product\data\atom_architect_256.ico
- name: Create installer
run: ${{github.workspace}}\..\Qt\Tools\QtInstallerFramework\4.7\bin\binarycreator.exe -c config\config.xml -p packages ${{env.PROGNAME}}-installer-win64.exe
working-directory: packaging
- name: Upload installer
uses: actions/upload-artifact@v3
with:
name: ${{env.PROGNAME}}-installer-win64.exe
path: packaging/${{env.PROGNAME}}-installer-win64.exe
# deploy Windows installer
deploy-installer-windows:
runs-on: ubuntu-latest
needs: [create-installer-windows, create-release]
permissions: write-all
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: ${{env.PROGNAME}}-installer-win64.exe
path: ./
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: ${{env.PROGNAME}}-installer-win64.exe
asset_name: ${{env.PROGNAME}}-installer-win64.exe
asset_content_type: application/vnd.microsoft.portable-executable