Skip to content

Build

Build #3

Workflow file for this run

name: Build
on:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Install common dependencies
run: |
flutter pub upgrade
- name: Install Linux dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y curl git unzip xz-utils zip libglu1-mesa
sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev
- name: Build for ${{ matrix.os }}
run: |
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then
flutter build linux
elif [[ "${{ matrix.os }}" == "macos-latest" ]]; then
flutter build macos
elif [[ "${{ matrix.os }}" == "windows-latest" ]]; then
flutter build windows
fi
- name: Zip entire build directory
run: |
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then
cd build/linux
zip -r ../linux-build.zip .
cd ..
elif [[ "${{ matrix.os }}" == "macos-latest" ]]; then
cd build/macos
zip -r ../macos-build.zip .
cd ..
elif [[ "${{ matrix.os }}" == "windows-latest" ]]; then
cd build/windows
zip -r ../windows-build.zip .
cd ..
shell: bash
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.os }}-build
path: build/*.zip