-
Notifications
You must be signed in to change notification settings - Fork 10
135 lines (121 loc) · 3.5 KB
/
packages.yaml
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
name: Build packages for master or a tagged release
on:
push:
branches:
- master
# Any tag starting with 'v'
tags:
- 'v*'
workflow_dispatch:
jobs:
build-distro-packages-arm64:
runs-on: ubuntu-latest
name: build arm64 packages
strategy:
fail-fast: false
matrix:
format: [ rpm, deb ]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: uraimo/[email protected]
name: Build the ${{matrix.format}} packages
with:
arch: aarch64
distro: ubuntu_latest
run: |
apt-get update && \
apt-get install -y --no-install-recommends \
build-essential \
cmake \
file \
rpm \
make
cmake .
echo ${{ matrix.format }} | awk '{print toupper($0)}' | xargs -I{} cpack -G {}
- name: Store the master package artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.format }}-arm64
path: |
./*.${{matrix.format}}
build-distro-packages-amd64:
name: build amd64 packages
strategy:
fail-fast: false
matrix:
format: [ rpm, deb ]
runs-on: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build the ${{matrix.format}} packages
run: |
cmake .
echo ${{ matrix.format }} | awk '{print toupper($0)}' | xargs -I{} cpack -G {}
- name: Store the master package artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.format }}-amd64
path: |
./*.${{matrix.format}}
build-macos-packages-arm64:
name: build macOS Apple Silicon packages
strategy:
fail-fast: true
matrix:
config:
- format: productbuild
arch: apple
ext: pkg
runs-on: macos-14
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build the ${{matrix.config.format}} packages
run: |
cmake . -DCPACK_GENERATOR=${{ matrix.config.format }}
echo ${{ matrix.config.format }} | xargs -I{} cpack -G {}
- name: Store the master package artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.format }}-${{matrix.config.arch}}
path: |
./*-${{matrix.config.arch}}.${{matrix.config.ext}}
release:
name: Create release and upload packages
needs:
- build-distro-packages-amd64
- build-distro-packages-arm64
- build-macos-packages-arm64
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Download all artefacts
uses: actions/download-artifact@v4
with:
path: artifacts/
- name: Display structure of downloaded files
run: ls -R
working-directory: artifacts
shell: bash
- name: Unstable release on push to master to make it easier to download
uses: pyTooling/Actions/releaser@r0
continue-on-error: true
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag: 'unstable'
rm: true
files: |
artifacts/**/*
- name: Release on tag
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
generate_release_notes: true
files: |
artifacts/**/*