-
Notifications
You must be signed in to change notification settings - Fork 75
189 lines (176 loc) · 7.3 KB
/
publish-linux-qsvpy-glibc-231-musl-123.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
name: Publish qsvpy glibc 2.31/musl 1.2.3 binaries
# disabling for now as it's not working
# will revisit in the future should GitHub support Alpine Linux runners
# or allow self-hosted runners to run on Alpine Linux
# https://github.com/actions/runner/issues/801
on:
workflow_dispatch:
env:
QSV_KIND: prebuilt-older
jobs:
analyze-tags:
runs-on: ubuntu-20.04
outputs:
previous-tag: ${{ steps.previoustag.outputs.tag }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
#▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼#
- name: Get previous tag
id: previoustag
uses: "WyriHaximus/github-action-get-previous-tag@v1"
#▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲#
publish:
name: Publish for ${{ matrix.job.target }}
needs: analyze-tags
runs-on: ${{ matrix.job.os }}
strategy:
matrix:
rust: [stable]
job:
- os: ubuntu-20.04
os-name: linux
target: x86_64-unknown-linux-gnu
architecture: x86_64
addl-build-args: --features=apply,luau,fetch,foreach,self_update,python,polars,geocode,lens
default-features:
addl-qsvlite-features:
addl-qsvdp-features: luau
name-suffix: glibc-2.31
addl-rustflags: -C target-feature=+fxsr,+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+popcnt,+avx,+fma
- os: ubuntu-20.04
os-name: linux
target: x86_64-unknown-linux-musl
architecture: x86_64
musl-prep: true
addl-build-args: --features=apply,fetch,foreach,self_update,python,polars,geocode,lens
default-features:
addl-qsvlite-features:
addl-qsvdp-features:
name-suffix: musl-1.2.3
addl-rustflags: -C target-feature=-crt-static,+fxsr,+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+popcnt,+avx,+fma
steps:
- name: Installing Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
target: ${{ matrix.job.target }}
override: true
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ needs.analyze-tags.outputs.previous-tag }}
- name: build prep for x86_64-unknown-linux-musl
if: ${{ matrix.job.musl-prep }}
run: |
sudo apt-get install musl-tools musl-dev
sudo ln -s /usr/bin/g++ /usr/bin/musl-g++
- uses: actions/[email protected]
with:
python-version: '3.10'
- name: Build qsvpy310
env:
RUSTFLAGS: ${{ matrix.job.addl-rustflags }}
uses: actions-rs/cargo@v1
with:
command: build
use-cross: false
toolchain: ${{ matrix.rust }}
args: --release --locked --bin qsv --target ${{ matrix.job.target }} ${{ matrix.job.addl-build-args }},feature_capable ${{ matrix.job.default-features }}
- name: Copy binaries to working dir
shell: bash
run: |
mkdir qsv-${{ needs.analyze-tags.outputs.previous-tag }}
rm target/${{ matrix.job.target }}/release/*.d
cp target/${{ matrix.job.target }}/release/qsv* qsv-${{ needs.analyze-tags.outputs.previous-tag }}
cd qsv-${{ needs.analyze-tags.outputs.previous-tag }}
if [ "$RUNNER_OS" == "Windows"]; then
mv qsv.exe qsvpy310.exe
else
mv qsv qsvpy310
fi
cd ..
- uses: actions/[email protected]
with:
python-version: '3.11'
- name: Build qsvpy311
env:
RUSTFLAGS: ${{ matrix.job.addl-rustflags }}
uses: actions-rs/cargo@v1
with:
command: build
use-cross: false
toolchain: ${{ matrix.rust }}
args: --release --locked --bin qsv --target ${{ matrix.job.target }} ${{ matrix.job.addl-build-args }},feature_capable ${{ matrix.job.default-features }}
- name: Copy binaries to working dir
shell: bash
run: |
rm target/${{ matrix.job.target }}/release/*.d
cp target/${{ matrix.job.target }}/release/qsv* qsv-${{ needs.analyze-tags.outputs.previous-tag }}
cd qsv-${{ needs.analyze-tags.outputs.previous-tag }}
if [ "$RUNNER_OS" == "Windows"]; then
mv qsv.exe qsvpy311.exe
else
mv qsv qsvpy311
fi
cd ..
- uses: actions/[email protected]
with:
python-version: '3.12'
- name: Build qsvpy312
env:
RUSTFLAGS: ${{ matrix.job.addl-rustflags }}
uses: actions-rs/cargo@v1
with:
command: build
use-cross: false
toolchain: ${{ matrix.rust }}
args: --release --locked --bin qsv --target ${{ matrix.job.target }} ${{ matrix.job.addl-build-args }},feature_capable ${{ matrix.job.default-features }}
- name: Copy binaries to working dir
shell: bash
run: |
rm target/${{ matrix.job.target }}/release/*.d
cp target/${{ matrix.job.target }}/release/qsv* qsv-${{ needs.analyze-tags.outputs.previous-tag }}
cd qsv-${{ needs.analyze-tags.outputs.previous-tag }}
if [ "$RUNNER_OS" == "Windows"]; then
mv qsv.exe qsvpy312.exe
else
mv qsv qsvpy312
fi
rustup show > qsvpy_rust_version_info.txt
cd ..
- name: install zipsign
run: |
cargo install zipsign
- name: Fetch zipsign private key
uses: mobiledevops/secret-to-file-action@v1
with:
base64-encoded-secret: ${{ secrets.QSV_ZIPSIGN_PRIV_KEY }}
filename: "qsvpriv.key"
is-executable: false
working-directory: "."
- name: Download latest release zip
uses: robinraju/[email protected]
with:
repository: "jqnatividad/qsv"
latest: true
token: ${{ secrets.GITHUB_TOKEN }}
fileName: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-${{ matrix.job.target }}.zip
- name: remove zipsign signature from zip archive
run: |
zipsign unsign zip qsv-${{ needs.analyze-tags.outputs.previous-tag }}-${{ matrix.job.target }}.zip
- name: add/update "older" glibc 2.31/musl 1.2.3 files to zip
run: 7z u -tzip qsv-${{ needs.analyze-tags.outputs.previous-tag }}-${{ matrix.job.target }}.zip ./qsv-${{ needs.analyze-tags.outputs.previous-tag }}/qsv* -mx=9 -mmt=on
- name: re-zipsign zip archive
run: |
zipsign sign zip qsv-${{ needs.analyze-tags.outputs.previous-tag }}-${{ matrix.job.target }}.zip qsvpriv.key
- name: Upload zipped binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-${{ matrix.job.target }}.zip
asset_name: qsv-${{ needs.analyze-tags.outputs.previous-tag }}-${{ matrix.job.target }}.zip
overwrite: true
tag: ${{ needs.analyze-tags.outputs.previous-tag }}