-
Notifications
You must be signed in to change notification settings - Fork 3
225 lines (179 loc) · 5.62 KB
/
ci-cd.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# Main workflow for testing and releasing
name: CI/CD
env:
GOVERSION: "1.23"
NAME: "janice"
FULLNAME: "Janice"
FULLNAME2: "Janice" # for AppImage file, e.g. with spaces replaced by underscores
VERSION: "0.0.0"
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GOVERSION }}
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install gcc libgl1-mesa-dev xorg-dev
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
package_linux:
if: startsWith(github.ref, 'refs/tags/')
needs: test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GOVERSION }}
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install gcc libgl1-mesa-dev xorg-dev libfuse2
- name: Install Fyne tool
run: go install fyne.io/fyne/v2/cmd/fyne@latest
- name: Package Fyne app
run: fyne package -os linux --release
- name: Set version
run: |
VERSION=${{ github.ref_name }}
echo "VERSION=${VERSION:1}" >> $GITHUB_ENV
- name: Build AppImage
run: ./tools/build_appimage.sh
- uses: actions/upload-artifact@v4
with:
name: ${{ env.NAME }}-linux
path: ${{ env.FULLNAME2 }}-${{ env.VERSION }}-x86_64.AppImage
if-no-files-found: error
overwrite: true
package_windows:
if: startsWith(github.ref, 'refs/tags/')
needs: test
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: msys2/setup-msys2@v2
with:
path-type: inherit
update: true
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GOVERSION }}
- name: Install Dependencies
run: >
pacman -Syu &&
pacman --noconfirm -S git zip mingw-w64-x86_64-toolchain
- name: Install Fyne tool
run: go install fyne.io/fyne/v2/cmd/fyne@latest
- name: Package
run: fyne package -os windows --release
- name: Set version
run: |
VERSION=${{ github.ref_name }}
echo "VERSION=${VERSION:1}" >> $GITHUB_ENV
- name: ZIP package
run: zip ${{ env.NAME }}-${{ env.VERSION }}-windows-x64.zip "${{ env.FULLNAME }}.exe"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.NAME }}-windows
path: ${{ env.NAME }}-${{ env.VERSION }}-windows-x64.zip
if-no-files-found: error
overwrite: true
package_darwin_arm:
if: startsWith(github.ref, 'refs/tags/')
runs-on: macos-14
needs: test
steps:
- uses: actions/checkout@v4
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GOVERSION }}
- name: Install Fyne tool
run: go install fyne.io/fyne/v2/cmd/fyne@latest
- name: Package app bundles
run: fyne package -os darwin --release
- name: Set version
run: |
VERSION=${{ github.ref_name }}
echo "VERSION=${VERSION:1}" >> $GITHUB_ENV
- name: ZIP app bundle
run: zip --symlinks -r ${{ env.NAME }}-${{ env.VERSION }}-darwin-arm64.zip "${{ env.FULLNAME }}.app/"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.NAME }}-macos-arm
path: ${{ env.NAME }}-${{ env.VERSION }}-darwin-arm64.zip
if-no-files-found: error
overwrite: true
package_darwin_intel:
if: startsWith(github.ref, 'refs/tags/')
runs-on: macos-13
needs: test
steps:
- uses: actions/checkout@v4
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GOVERSION }}
- name: Install Fyne tool
run: go install fyne.io/fyne/v2/cmd/fyne@latest
- name: Package app bundles
run: fyne package -os darwin --release
- name: Set version
run: |
VERSION=${{ github.ref_name }}
echo "VERSION=${VERSION:1}" >> $GITHUB_ENV
- name: ZIP app bundle
run: zip --symlinks -r ${{ env.NAME }}-${{ env.VERSION }}-darwin-intel64.zip "${{ env.FULLNAME }}.app/"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.NAME }}-macos-intel
path: ${{ env.NAME }}-${{ env.VERSION }}-darwin-intel64.zip
if-no-files-found: error
overwrite: true
release:
if: startsWith(github.ref, 'refs/tags/')
needs: [package_linux, package_darwin_arm, package_darwin_intel, package_windows]
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
merge-multiple: true
- name: Make version string
run: |
VERSION=${{ github.ref_name }}
echo "VERSION=${VERSION:1}" >> $GITHUB_ENV
- name: Create release
uses: softprops/action-gh-release@v2
with:
fail_on_unmatched_files: true
files: |
${{ env.NAME }}-${{ env.VERSION }}-windows-x64.zip
${{ env.FULLNAME2 }}-${{ env.VERSION }}-x86_64.AppImage
${{ env.NAME }}-${{ env.VERSION }}-darwin-arm64.zip
${{ env.NAME }}-${{ env.VERSION }}-darwin-intel64.zip