-
-
Notifications
You must be signed in to change notification settings - Fork 168
169 lines (142 loc) · 5.51 KB
/
linux.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
name: Build for Linux
on:
# Enable manual run
workflow_dispatch:
push:
tags:
- '**'
branches:
- '**'
paths:
- .github/workflows/linux.yml
- appimage/AppImageBuilder.yml
jobs:
build-linux:
strategy:
fail-fast: false
matrix:
arch:
- runs-on: ubuntu-latest
cache-name: saber
target-platform: linux-x64
flutter-output-folder: build/linux/x64/release/bundle
archive-suffix: x86_64
- runs-on: ubuntu-24.04-arm
cache-name: saberarm64
target-platform: linux-arm64
flutter-output-folder: build/linux/arm64/release/bundle
archive-suffix: arm64
runs-on: ${{ matrix.arch.runs-on }}
permissions:
contents: write
timeout-minutes: 20
name: Build Linux (${{ matrix.arch.target-platform }})
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: "./.github/shared_workflows/install_apt_dependencies"
- name: Setup cache
uses: actions/cache@v4
with:
path: |
build
key: ${{ runner.OS }}-${{ matrix.arch.cache-name }}-${{ hashFiles('**/pubspec.lock') }}-${{ hashFiles('**/*.dart') }}
restore-keys: |
${{ runner.OS }}-${{ matrix.arch.cache-name }}-
- name: Remove proprietary dependencies
run: ./patches/remove_proprietary_dependencies.sh
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
# Workaround for https://github.com/subosito/flutter-action/issues/345, needs to be removed when fixed
channel: master
flutter-version: 3.29.1
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:'
- name: Disable Flutter CLI animations
run: flutter config --no-cli-animations
- run: flutter pub get
- name: Build Linux (${{ matrix.arch.target-platform }})
run: |
flutter build linux \
--target-platform ${{ matrix.arch.target-platform }} \
--dart-define=DIRTY=${{ !startsWith(github.ref, 'refs/tags/') }}
- name: Compress Flutter build
id: compress
run: |
buildName=$(grep -oP "(?<=buildName = ').*(?=')" lib/data/version.dart)
archiveName="Saber_v${buildName}_Linux_${{ matrix.arch.archive-suffix }}.tar.gz"
echo "archiveName=$archiveName" >> $GITHUB_OUTPUT
mkdir -p AppDir
mv ${{ matrix.arch.flutter-output-folder }}}/* AppDir
chmod +x AppDir/saber
install -Dm644 flatpak/com.adilhanney.saber.metainfo.xml -t AppDir/share/metainfo/
install -Dm644 flatpak/com.adilhanney.saber.metainfo.xml -t AppDir/usr/share/metainfo/
install -Dm644 assets/icon/icon.svg AppDir/share/icons/hicolor/scalable/apps/com.adilhanney.saber.svg
install -Dm644 assets/icon/icon.svg AppDir/usr/share/icons/hicolor/scalable/apps/com.adilhanney.saber.svg
install -Dm644 flatpak/com.adilhanney.saber.desktop -t AppDir/share/applications/
tar -C AppDir -cvf $archiveName .
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Saber-Archive-${{ matrix.arch.archive-suffix }}
path: ${{ steps.compress.outputs.archiveName }}
- name: Upload to GitHub release
uses: svenstaro/upload-release-action@v2
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ steps.compress.outputs.archiveName }}
build-appimage:
name: Build AppImage
needs: build-linux
runs-on: ubuntu-latest
permissions:
contents: write
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install AppImage dependencies
run: |
sudo add-apt-repository universe
sudo apt install libfuse2
- name: Download app archive
uses: actions/download-artifact@v4
with:
name: Saber-Archive-x86_64
- name: Rename app archive
run: |
mv Saber_*.tar.gz Saber-Linux-Portable.tar.gz
- name: Download appimage-builder
working-directory: appimage
run: |
wget -O appimage-builder-x86_64.AppImage https://github.com/AppImageCrafters/appimage-builder/releases/download/v1.1.0/appimage-builder-1.1.0-x86_64.AppImage
chmod +x appimage-builder-x86_64.AppImage
- name: Prepare build files
working-directory: appimage
run: |
mkdir AppDir
tar -xvf ../Saber-Linux-Portable.tar.gz -C AppDir
- name: Set AppImage version
working-directory: appimage
run: |
# replace line with "version: latest" with "version: $buildName"
buildName=$(grep -oP "(?<=buildName = ').*(?=')" ../lib/data/version.dart)
sed -i "s/version: latest/version: ${buildName}/" AppImageBuilder.yml
- name: Build AppImage
working-directory: appimage
run: |
./appimage-builder-x86_64.AppImage --skip-test
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: AppImage artifact
path: appimage/Saber-*-x86_64.AppImage*
- name: Upload to GitHub release
uses: svenstaro/upload-release-action@v2
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: appimage/Saber-*-x86_64.AppImage*
file_glob: true