-
Notifications
You must be signed in to change notification settings - Fork 1
129 lines (107 loc) · 3.76 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
name: Fetch Binaries
defaults:
run:
shell: bash
on:
workflow_dispatch
jobs:
create_release:
name: Create Release
if: contains('["raub"]', github.actor)
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- name: Fetch Repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22.9.0
cache: 'npm'
- name: Get Package Version
id: package-version
run: node -p "'version='+require('./package').version" >> $GITHUB_OUTPUT
- name: Create Draft Release
id: create_release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
draft: true
tag_name: ${{ steps.package-version.outputs.version }}
name: Release ${{ steps.package-version.outputs.version }}
body: Binaries at ${{ github.sha }}
build:
name: Fetch Qt Binaries
strategy:
matrix:
os: [ubuntu-22.04, windows-2022, macos-14, [self-hosted, linux, ARM64]]
runs-on: ${{ matrix.os }}
steps:
- name: Fetch Repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install Qt
if: matrix.os == 'ubuntu-22.04' || matrix.os == 'macos-14' || matrix.os == 'windows-2022'
uses: jurplel/install-qt-action@v4
with:
version: '6.8.0'
cache: 'true'
cache-key-prefix: 'install-qt-${{ matrix.os }}'
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22.9.0
cache: 'npm'
- name: Get Package Version
id: package-version
run: node -p "'version='+require('./package').version" >> $GITHUB_OUTPUT
- name: Locate Tmp Dir
run: |
QT_TMP0='${{ github.workspace }}'
QT_TMP1="${QT_TMP0//'\'/"/"}"
echo "QT_TMP=$QT_TMP1/../__tmp" >> $GITHUB_ENV
- name: Create Qt Subdirs
run: |
chmod +x src/qt-mkdir.sh
src/qt-mkdir.sh ${{ env.QT_TMP }}
- name: Copy Qt Dir - Linux
if: matrix.os == 'ubuntu-22.04'
run: |
echo "OS_NAME=linux" >> $GITHUB_ENV
chmod +x src/qt-copy-linux.sh
src/qt-copy-linux.sh ${{ env.QT_TMP }} ${{ github.workspace }}/../Qt/6.8.0/gcc_64
- name: Copy Qt Dir - Linux ARM
if: matrix.os != 'ubuntu-22.04' && matrix.os != 'macos-14' && matrix.os != 'windows-2022'
run: |
echo "OS_NAME=aarch64" >> $GITHUB_ENV
chmod +x src/qt-copy-linux.sh
src/qt-copy-linux.sh ${{ env.QT_TMP }} /home/opc/6.8.0/gcc_arm64
- name: Copy Qt Dir - MacOS ARM
if: matrix.os == 'macos-14'
run: |
echo "OS_NAME=darwin-arm64" >> $GITHUB_ENV
chmod +x src/qt-copy-macos.sh
src/qt-copy-macos.sh ${{ env.QT_TMP }} ${{ github.workspace }}/../Qt/6.8.0/macos
- name: Copy Qt Dir - Windows
if: matrix.os == 'windows-2022'
run: |
echo "OS_NAME=windows" >> $GITHUB_ENV
src/qt-copy-windows.sh '${{ env.QT_TMP }}' '${{ github.workspace }}\..\Qt\6.8.0\msvc2022_64'
- name: Pack Libs
run: |
cd '${{ env.QT_TMP }}'
tar -czf ../${{ env.OS_NAME }}.gz *
- name: Store Binaries
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
draft: true
tag_name: ${{ steps.package-version.outputs.version }}
name: Release ${{ steps.package-version.outputs.version }}
files: ${{ env.QT_TMP }}/../${{ env.OS_NAME }}.gz