v0.24.1 #383
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build for Linux | |
on: | |
# Enable manual run | |
workflow_dispatch: | |
push: | |
tags: | |
- '**' | |
branches: | |
- '**' | |
paths: | |
- .github/workflows/linux.yml | |
jobs: | |
build-flutter-app-x86_64: | |
name: Build Flutter app (x86_64) | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install apt dependencies | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: libgtk-3-dev libx11-dev pkg-config cmake ninja-build libblkid-dev libsecret-1-dev libjsoncpp-dev ghostscript libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libunwind-dev | |
version: 1.0 | |
execute_install_scripts: true | |
- name: Setup cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
build | |
key: ${{ runner.OS }}-saber-${{ hashFiles('**/pubspec.lock') }}-${{ hashFiles('**/*.dart') }} | |
restore-keys: | | |
${{ runner.OS }}-saber- | |
- name: Remove simulator dependency | |
run: ./patches/remove_simulator_dependency.sh | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
cache: true | |
cache-key: 'flutter-:os:-:channel:-:version:-:arch:' | |
- run: flutter pub get | |
- name: Build Linux (x86_64) | |
run: | | |
flutter build linux \ | |
--dart-define=DIRTY=$DIRTY | |
env: | |
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_x86_64.tar.gz" | |
echo "archiveName=$archiveName" >> $GITHUB_OUTPUT | |
mkdir -p AppDir | |
mv build/linux/x64/release/bundle/* 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/resized/icon-512x512.png AppDir/share/icons/hicolor/512x512/apps/com.adilhanney.saber.png | |
install -Dm644 assets/icon/resized/icon-512x512.png AppDir/usr/share/icons/hicolor/512x512/apps/com.adilhanney.saber.png | |
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-x86_64 | |
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-flutter-app-arm64: | |
name: Build Flutter app (arm64) | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
timeout-minutes: 120 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
build | |
key: ${{ runner.OS }}-saberarm64-${{ hashFiles('**/pubspec.lock') }}-${{ hashFiles('**/*.dart') }} | |
restore-keys: | | |
${{ runner.OS }}-saberarm64- | |
- name: Build Linux (arm64) | |
uses: uraimo/run-on-arch-action@v2 | |
with: | |
arch: aarch64 | |
distro: ubuntu_latest | |
githubToken: ${{ github.token }} | |
setup: | | |
mkdir -p "${PWD}/AppDir" | |
mkdir -p "${PWD}/build/pub_cache" | |
dockerRunArgs: | | |
--volume "${PWD}/AppDir:/AppDir" | |
install: | | |
quiet () { | |
output=`"$@" 2>&1` || echo $output | |
} | |
unsudo () { | |
sudo -u nonroot env "PATH=$PATH" "CARGO_HOME=$CARGO_HOME" "RUSTUP_HOME=$RUSTUP_HOME" PUB_CACHE="$PUB_CACHE" "$@" | |
} | |
echo Installing dependencies | |
quiet apt-get update -qq -y | |
quiet apt-get install -qq -y \ | |
sudo \ | |
bash curl file git unzip xz-utils zip \ | |
clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev \ | |
libsecret-1-dev libjsoncpp-dev \ | |
libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libunwind-dev | |
echo Creating nonroot user | |
useradd -m -d /home/nonroot -s /bin/bash nonroot | |
echo 'export PATH="$PATH:/opt/flutter/bin"' >> /home/nonroot/.bashrc | |
echo 'export PATH="$PATH:/opt/cargo/bin"' >> /home/nonroot/.bashrc | |
echo 'export CARGO_HOME=/opt/cargo' >> /home/nonroot/.bashrc | |
echo 'export RUSTUP_HOME=/opt/rustup' >> /home/nonroot/.bashrc | |
echo 'export PUB_CACHE=build/pub_cache' >> /home/nonroot/.bashrc | |
export PATH="$PATH:/opt/flutter/bin" | |
export PATH="$PATH:/opt/cargo/bin" | |
export CARGO_HOME=/opt/cargo | |
export RUSTUP_HOME=/opt/rustup | |
export PUB_CACHE=build/pub_cache | |
echo Installing Flutter | |
if [ -z "$(which flutter)" ]; then | |
echo Flutter not installed, installing... | |
mkdir -p /opt/flutter | |
chown -R nonroot /opt/flutter | |
unsudo git clone https://github.com/flutter/flutter.git -b stable --depth 1 /opt/flutter | |
else | |
echo Flutter already installed, updating... | |
chown -R nonroot /opt/flutter | |
unsudo flutter upgrade | |
fi | |
echo flutter doctor | |
unsudo flutter doctor -v | |
echo Precaching Flutter | |
unsudo flutter precache --no-universal --linux | |
echo Installing Rust | |
mkdir -p $CARGO_HOME | |
mkdir -p $RUSTUP_HOME | |
mkdir -p "$RUSTUP_HOME/tmp" | |
chown -R nonroot $CARGO_HOME | |
chown -R nonroot $RUSTUP_HOME | |
unsudo curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -q -y | |
chmod -R a+rw $CARGO_HOME | |
chmod -R a+rw $RUSTUP_HOME | |
unsudo ls -l $CARGO_HOME/bin | |
unsudo which rustup | |
run: | | |
unsudo () { | |
sudo -u nonroot env "PATH=$PATH" "CARGO_HOME=$CARGO_HOME" "RUSTUP_HOME=$RUSTUP_HOME" PUB_CACHE="$PUB_CACHE" "$@" | |
} | |
echo Setting up environment | |
chown -R nonroot . | |
chown -R nonroot /opt/flutter | |
chown -R nonroot /opt/cargo | |
export PATH="$PATH:/opt/flutter/bin" | |
export PATH="$PATH:/opt/cargo/bin" | |
export CARGO_HOME=/opt/cargo | |
export RUSTUP_HOME=/opt/rustup | |
export PUB_CACHE=build/pub_cache | |
echo Removing simulator dependency | |
./patches/remove_simulator_dependency.sh | |
echo flutter pub get | |
unsudo flutter pub get | |
echo Verifying that rustup is installed | |
unsudo which rustup | |
echo Building | |
unsudo flutter build linux \ | |
--target-platform linux-arm64 \ | |
--dart-define=DIRTY=${{ !startsWith(github.ref, 'refs/tags/') }} | |
mv build/linux/arm64/release/bundle/* /AppDir/ | |
chown -R nonroot /AppDir/ | |
chmod -R a+rw /AppDir/ | |
chmod a+x /AppDir/saber | |
- name: Compress Flutter build | |
id: compress | |
run: | | |
buildName=$(grep -oP "(?<=buildName = ').*(?=')" lib/data/version.dart) | |
archiveName="Saber_v${buildName}_Linux_arm64.tar.gz" | |
echo "archiveName=$archiveName" >> $GITHUB_OUTPUT | |
sudo chown -R $USER:$USER . | |
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/resized/icon-512x512.png AppDir/share/icons/hicolor/512x512/apps/com.adilhanney.saber.png | |
install -Dm644 assets/icon/resized/icon-512x512.png AppDir/usr/share/icons/hicolor/512x512/apps/com.adilhanney.saber.png | |
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-arm64 | |
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-flutter-app-x86_64 | |
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 |