-
Notifications
You must be signed in to change notification settings - Fork 38
180 lines (154 loc) · 5.87 KB
/
release_packages.yml
File metadata and controls
180 lines (154 loc) · 5.87 KB
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
name: Release packages
on:
release:
types: [published]
workflow_dispatch:
jobs:
build-linux-amd64:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up CMake
uses: jwlawson/actions-setup-cmake@v2
- name: Build PC Linux version of openAPV, generate packages and md5 file
run: |
cmake -S ${{github.workspace}} -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
cmake --build ${{github.workspace}}/build
cd ${{github.workspace}}/build
cpack -C Release
- name: 'Upload PC Linux artifacts'
uses: actions/upload-artifact@v5
with:
name: openapv-linux-${{github.event.release.tag_name}}
path: |
${{ github.workspace }}/build/*.deb
${{ github.workspace }}/build/*.md5
retention-days: 7
- name: Upload Linux assets to GitHub Release
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "build/*.deb; build/*.md5"
update_latest_release: true
draft: false
overwrite: true
build-linux-arm64:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up CMake
uses: jwlawson/actions-setup-cmake@v2
- name: Install ARM toolchain
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu binutils-aarch64-linux-gnu
- name: Build ARM
run: |
cmake -S ${{github.workspace}} -B ${{github.workspace}}/build-arm -DCMAKE_TOOLCHAIN_FILE=${{github.workspace}}/arm64_toolchain.cmake -DCMAKE_BUILD_TYPE=Release
cmake --build ${{github.workspace}}/build-arm
cd ${{github.workspace}}/build-arm
cpack -C Release
- name: 'Upload ARM artifacts'
uses: actions/upload-artifact@v5
with:
name: openapv-arm-${{github.event.release.tag_name}}
path: |
${{ github.workspace }}/build-arm/*.deb
${{ github.workspace }}/build-arm/*.md5
retention-days: 7
- name: Upload ARM assets to GitHub Release
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "build-arm/*.deb; build-arm/*.md5"
update_latest_release: true
draft: false
overwrite: true
build-darwin-arm64:
runs-on: macos-13-xlarge
steps:
- uses: actions/checkout@v6
- name: Build macOS ARM64 (Apple Silicon)
run: |
cmake -S ${{github.workspace}} -B ${{github.workspace}}/build-darwin -DUNIVERSAL=FALSE -DCMAKE_OSX_ARCHITECTURES=arm64 -DARM=1 -DCMAKE_BUILD_TYPE=Release
cmake --build ${{github.workspace}}/build-darwin
cd ${{github.workspace}}/build-darwin
cpack -C Release -G TGZ
- uses: actions/upload-artifact@v5
with:
name: openapv-darwin-${{github.event.release.tag_name}}
path: |
${{ github.workspace }}/build-darwin/*.tar.gz
${{ github.workspace }}/build-darwin/*.md5
retention-days: 7
- uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "build-darwin/*.tar.gz; build-darwin/*.md5"
update_latest_release: true
draft: false
overwrite: true
build-darwin-universal:
runs-on: macos-13-xlarge
steps:
- uses: actions/checkout@v6
- name: Build macOS Universal (ARM64 + AMD64)
run: |
cmake -S ${{github.workspace}} -B ${{github.workspace}}/build -DCMAKE_TOOLCHAIN_FILE=macos_universal_toolchain.cmake -DUNIVERSAL=1 -DCMAKE_BUILD_TYPE=Release
cmake --build ${{github.workspace}}/build
cd ${{github.workspace}}/build
cpack -C Release -G DragNDrop
- uses: actions/upload-artifact@v5
with:
name: openapv-universal-${{github.event.release.tag_name}}
path: |
${{ github.workspace }}/build/*.dmg
${{ github.workspace }}/build/*.md5
retention-days: 7
- uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "build/*.dmg; build/*.md5"
update_latest_release: true
draft: false
overwrite: true
build-windows:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up CMake
uses: jwlawson/actions-setup-cmake@v2
- name: Install Windows toolchain
run: |
sudo apt-get update
sudo apt-get install -y mingw-w64 mingw-w64-tools
- name: Build (crosscmopile) PC Windows version of openAPV, generate packages and md5 file
run: |
cmake -S ${{github.workspace}} -B ${{github.workspace}}/build-windows -DCMAKE_TOOLCHAIN_FILE=${{github.workspace}}/windows_x86_64_toolchain.cmake -DCMAKE_BUILD_TYPE=Release
cmake --build ${{github.workspace}}/build-windows
cd ${{github.workspace}}/build-windows
cpack -G ZIP -C Release
- name: 'Upload PC Windows artifacts'
uses: actions/upload-artifact@v5
with:
name: openapv-windows-${{github.event.release.tag_name}}
path: |
${{ github.workspace }}/build-windows/*.zip
${{ github.workspace }}/build-windows/*.md5
retention-days: 7
- name: Upload Windows assets to GitHub Release
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "build-windows/*.zip; build-windows/*.md5"
update_latest_release: true
draft: false
overwrite: true