-
Notifications
You must be signed in to change notification settings - Fork 9
154 lines (153 loc) · 4.58 KB
/
freeze.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
---
name: Create instawow executables
on: [push, workflow_dispatch]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FORCE_COLOR: "1"
UV_PYTHON_DOWNLOADS: manual
UV_PYTHON_PREFERENCE: only-managed
defaults:
run:
shell: bash
jobs:
build-packages:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.build-packages.outputs.version }}
steps:
- name: Clone the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build packages
id: build-packages
uses: ./.github/actions/build-packages
freeze-cli:
needs: build-packages
strategy:
fail-fast: false
matrix:
build-env:
- os: macos-12
target: aarch64-apple-darwin
- os: macos-12
target: x86_64-apple-darwin
- os: ubuntu-22.04
target: aarch64-unknown-linux-gnu
- os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
# - os: windows-2022
# target: aarch64-pc-windows-msvc
- os: windows-2022
target: x86_64-pc-windows-msvc
runs-on: ${{ matrix.build-env.os }}
steps:
- name: Clone the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download pre-built packages
uses: actions/download-artifact@v4
with:
name: packages
path: ./dist
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install Python 3.12
run: uv python install 3.12
- name: Install nox
run: uv tool install -p 3.12 nox
- name: Install Rust
run: rustup update stable
- name: Install cross-compilation toolchain
uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.build-env.target }}
- name: Install cross
uses: taiki-e/install-action@v2
with:
tool: cross
if: startsWith(matrix.build-env.os, 'ubuntu-')
- name: Freeze the CLI
id: freeze-cli
run: nox -s freeze_cli -- --out-dir ./cli
env:
CARGO_BUILD_TARGET: ${{ matrix.build-env.target }}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: instawow-cli-${{ needs.build-packages.outputs.version }}-${{ matrix.build-env.target }}
path: ./cli/instawow*
freeze-gui:
needs: build-packages
strategy:
matrix:
build-env:
- os: macos-latest
target: universal2-apple-darwin
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os: windows-latest
target: x86_64-pc-windows-msvc
fail-fast: false
runs-on: ${{ matrix.build-env.os }}
steps:
- name: Clone the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download pre-built packages
uses: actions/download-artifact@v4
with:
name: packages
path: ./dist
- name: Install briefcase Linux dependencies
run: sudo apt-get update --fix-missing && sudo apt-get install -y flatpak-builder
if: startsWith(matrix.build-env.os, 'ubuntu-')
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install Python 3.12
run: uv python install 3.12
- name: Install nox
run: uv tool install -p 3.12 nox
- name: Freeze the GUI
run: >-
nox
--error-on-missing-interpreters
--force-python 3.12
-s freeze_gui-3.12
--
${{ startsWith(github.ref, 'refs/tags/') && '--release' || '' }}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: instawow-gui-${{ needs.build-packages.outputs.version }}-${{ matrix.build-env.target }}
path: |
instawow-gui/dist/instawow-gui-*
if-no-files-found: error
create-release:
if: startsWith(github.ref, 'refs/tags/')
needs: [freeze-cli, freeze-gui]
runs-on: ubuntu-latest
steps:
- name: Download built artifacts
uses: actions/download-artifact@v4
with:
path: release-assets
- name: Zip up CLI directories
run: |
set +x
for d in instawow-cli-*
do
zip -r "${d%/}.zip" "$d"
done
working-directory: release-assets
- name: Release
uses: softprops/action-gh-release@v1
with:
draft: true
files: |
release-assets/instawow-cli-*.zip
release-assets/instawow-gui-*/*