Gitea Actions/act does NOT persist $GITHUB_PATH between steps. Each step runs in a separate shell, so we must export PATH="$PWD/flutter/bin:$PATH" in every step that uses flutter/dart commands.
224 lines
7.6 KiB
YAML
224 lines
7.6 KiB
YAML
# kryz-go-flutter CI Pipeline
|
|
# Triggers on push and pull_request
|
|
# Stages: lint -> test -> build (Android + iOS) -> artifacts
|
|
#
|
|
# NOTE: Gitea's `act` runner registers as `ubuntu-latest`. Jobs MUST use
|
|
# `runs-on: ubuntu-latest` to be picked up. The runner executes jobs inside
|
|
# x86_64 Linux Docker containers, so we use Linux SDK binaries.
|
|
#
|
|
# IMPORTANT: $GITHUB_PATH does NOT persist between steps in Gitea Actions/act.
|
|
# Each step is a separate shell. We install Flutter to a workspace subdirectory
|
|
# and export a shell variable so every step has Flutter on PATH.
|
|
|
|
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- develop
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
# Cancel in-progress runs on new push to same branch
|
|
concurrency:
|
|
group: ${{ gitea.workflow }}-${{ gitea.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
# ── Stage 1: Lint & static analysis ──────────────────────────────
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Flutter
|
|
run: |
|
|
set -e
|
|
curl -fsSL "https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.35.3-stable.tar.xz" \
|
|
-o /tmp/flutter.tar.xz
|
|
tar -xf /tmp/flutter.tar.xz -C "$PWD"
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
flutter --version
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
flutter pub get
|
|
|
|
- name: Generate stubs (lint gate support)
|
|
if: hashFiles('theme.json') == ''
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
python3 ci_stub_gen.py
|
|
|
|
- name: Analyze Dart code
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
flutter analyze --fatal-warnings
|
|
|
|
- name: Check formatting
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
dart format --set-exit-if-changed lib/ test/
|
|
|
|
|
|
# ── Stage 2: Unit & widget tests ─────────────────────────────────
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
needs: [lint]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Flutter
|
|
run: |
|
|
set -e
|
|
curl -fsSL "https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.35.3-stable.tar.xz" \
|
|
-o /tmp/flutter.tar.xz
|
|
tar -xf /tmp/flutter.tar.xz -C "$PWD"
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
flutter --version
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
flutter pub get
|
|
|
|
- name: Generate stubs (lint gate support)
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
python3 ci_stub_gen.py
|
|
|
|
- name: Run tests
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
flutter test --reporter=expanded
|
|
|
|
|
|
# ── Stage 3: Android build ──────────────────────────────────────
|
|
build-android:
|
|
name: Build Android
|
|
runs-on: ubuntu-latest
|
|
needs: [test]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Java 17
|
|
run: |
|
|
set -e
|
|
curl -fsSL "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.12%2B7/OpenJDK17U-jdk_x64_linux_hotspot_17.0.12_7.tar.gz" \
|
|
-o /tmp/jdk.tar.gz
|
|
mkdir -p "$HOME/jdk"
|
|
tar -xzf /tmp/jdk.tar.gz -C "$HOME/jdk" --strip-components=1
|
|
export PATH="$HOME/jdk/bin:$PATH"
|
|
export JAVA_HOME="$HOME/jdk"
|
|
java -version
|
|
|
|
- name: Setup Flutter
|
|
run: |
|
|
set -e
|
|
curl -fsSL "https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.35.3-stable.tar.xz" \
|
|
-o /tmp/flutter.tar.xz
|
|
tar -xf /tmp/flutter.tar.xz -C "$PWD"
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
flutter --version
|
|
|
|
- name: Install Android SDK command-line tools
|
|
run: |
|
|
set -e
|
|
export ANDROID_HOME="${HOME}/android-sdk"
|
|
mkdir -p "${ANDROID_HOME}/cmdline-tools"
|
|
curl -fsSL "https://dl.google.com/android/repository/commandlinetools-linux-11076708_latest.zip" -o /tmp/cmdline-tools.zip
|
|
unzip -q /tmp/cmdline-tools.zip -d "${ANDROID_HOME}/cmdline-tools"
|
|
mv "${ANDROID_HOME}/cmdline-tools/cmdline-tools" "${ANDROID_HOME}/cmdline-tools/latest"
|
|
export PATH="${ANDROID_HOME}/cmdline-tools/latest/bin:${PATH}"
|
|
yes | sdkmanager --licenses >/dev/null 2>&1 || true
|
|
sdkmanager "platform-tools" "platforms;android-35" "build-tools;35.0.0"
|
|
|
|
- name: Pre-cache Android platform artifacts
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
flutter precache --android
|
|
|
|
- name: Accept Android SDK licenses
|
|
run: |
|
|
yes | "${HOME}/android-sdk/cmdline-tools/latest/bin/sdkmanager" --licenses || true
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
flutter pub get
|
|
|
|
- name: Generate stubs (lint gate support)
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
python3 ci_stub_gen.py
|
|
|
|
- name: Analyze (gate before build)
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
flutter analyze --fatal-warnings
|
|
|
|
- name: Run tests (gate before build)
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
flutter test --reporter=expanded
|
|
|
|
# Optional: run whitelabel build script to regenerate lib/generated/
|
|
# Skip gracefully if theme.json is missing or script fails
|
|
- name: Run whitelabel build script
|
|
if: hashFiles('theme.json') != ''
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
python3 build_whitelabel.py
|
|
|
|
- name: Build APK (release)
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
export JAVA_HOME="$HOME/jdk"
|
|
flutter build apk --release
|
|
|
|
- name: Build App Bundle (release)
|
|
run: |
|
|
export PATH="$PWD/flutter/bin:$PATH"
|
|
export JAVA_HOME="$HOME/jdk"
|
|
flutter build appbundle --release
|
|
|
|
- name: List build outputs
|
|
run: |
|
|
echo "=== APK output ==="
|
|
ls -lh build/app/outputs/flutter-apk/ || true
|
|
echo "=== AAB output ==="
|
|
ls -lh build/app/outputs/bundle/release/ || true
|
|
|
|
- name: "Note: artifact storage not configured"
|
|
run: |
|
|
echo "WARNING: Gitea Actions artifact storage is not configured on this instance."
|
|
echo "Build outputs available in runner workspace:"
|
|
echo " APK: build/app/outputs/flutter-apk/app-release.apk"
|
|
echo " AAB: build/app/outputs/bundle/release/app-release.aab"
|
|
echo "Configure artifact storage in Gitea Actions admin settings to enable uploads."
|
|
|
|
|
|
# ── Stage 3 (parallel): iOS build ───────────────────────────────
|
|
build-ios:
|
|
name: Build iOS
|
|
runs-on: ubuntu-latest
|
|
needs: [test]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Check iOS build feasibility
|
|
run: |
|
|
echo "INFO: iOS builds require macOS host with Xcode."
|
|
echo "Our self-hosted runner runs Linux containers via act."
|
|
echo "Skipping iOS build — it will succeed as a no-op."
|
|
echo "To enable iOS builds, configure a native macOS runner."
|