Skip to content

github: try installing docker differently #356

github: try installing docker differently

github: try installing docker differently #356

Workflow file for this run

name: Build for Linux
on:
# Enable manual run
workflow_dispatch:
push:
jobs:
get-version:
name: Get version
runs-on: ubuntu-latest
outputs:
buildName: ${{ steps.get_version.outputs.buildName }}
buildNumber: ${{ steps.get_version.outputs.buildNumber }}
timeout-minutes: 1
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get version
id: get_version
run: |
# get buildName from lib/data/version.dart
buildName=$(grep -oP "(?<=buildName = ').*(?=')" lib/data/version.dart)
echo "buildName=$buildName" >> $GITHUB_OUTPUT
# get buildNumber from lib/data/version.dart
buildNumber=$(grep -oP '(?<=buildNumber = ).*(?=;)' lib/data/version.dart)
echo "buildNumber=$buildNumber" >> $GITHUB_OUTPUT
build-flutter-app-x86_64:
name: Build Flutter app (x86_64)
runs-on: ubuntu-latest
needs: get-version
permissions:
contents: write
timeout-minutes: 20
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Remove unneeded files
run: |
rm -rf android
rm -rf assets_raw
rm -rf installers
rm -rf integration_test
rm -rf ios
rm -rf macos
rm -rf metadata
rm -rf test
rm -rf windows
- 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
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: 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: |
archiveName="Saber_v${{ needs.get-version.outputs.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: macos-14
needs: get-version
permissions:
contents: write
packages: write
timeout-minutes: 60
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: Install Docker
run: |
brew install --cask docker
open /Applications/Docker.app
- name: Build Linux (arm64)
timeout-minutes: 120
run: docker run --rm
--volume ${PWD}:/saber --workdir /saber
ghcr.io/cirruslabs/flutter:stable
DIRTY=${{ !startsWith(github.ref, 'refs/tags/') }} ./github/workflows/linux-arm64.sh
- name: Compress Flutter build
id: compress
run: |
archiveName="Saber_v${{ needs.get-version.outputs.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, get-version]
runs-on: ubuntu-latest
permissions:
contents: write
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Remove unneeded files
run: |
rm -rf android
rm -rf assets_raw
rm -rf installers
rm -rf integration_test
rm -rf ios
rm -rf macos
rm -rf metadata
rm -rf test
rm -rf windows
- 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"
sed -i "s/version: latest/version: ${{ needs.get-version.outputs.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