- ci.yml: add paths filters to push and pull_request triggers so the full Dagger check only runs when source-relevant files change (lib/, test/, android/, linux/, scripts/, ci/, Taskfile.yml, etc.). Pure website, docs, and assets/changelog.txt commits no longer trigger ci.yml. - deploy.yml: add check-changes job that diffs HEAD~1..HEAD and outputs android/linux booleans. On workflow_dispatch both are always true. test-android-firebase, deploy-playstore, and deploy-apk are now conditional on android==true; build-linux is conditional on linux==true. label-deploy-health only fires when at least one build job actually ran (not all skipped) and treats 'skipped' as acceptable in ALL_SUCCEEDED. - ci/main.go Graph(): update Mermaid diagram to reflect the new two- workflow structure (ci.yml fast-check + deploy.yml with change-gated jobs). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
112 lines
3.8 KiB
YAML
112 lines
3.8 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- 'lib/**'
|
|
- 'test/**'
|
|
- 'integration_test/**'
|
|
- 'android/**'
|
|
- 'linux/**'
|
|
- 'assets/**'
|
|
- '!assets/changelog.txt'
|
|
- 'pubspec.yaml'
|
|
- 'pubspec.lock'
|
|
- 'analysis_options.yaml'
|
|
- 'scripts/**'
|
|
- 'stalwart-dev/**'
|
|
- 'ci/**'
|
|
- 'Taskfile.yml'
|
|
- 'drift_schemas/**'
|
|
- '.forgejo/workflows/ci.yml'
|
|
pull_request:
|
|
paths:
|
|
- 'lib/**'
|
|
- 'test/**'
|
|
- 'integration_test/**'
|
|
- 'android/**'
|
|
- 'linux/**'
|
|
- 'assets/**'
|
|
- '!assets/changelog.txt'
|
|
- 'pubspec.yaml'
|
|
- 'pubspec.lock'
|
|
- 'analysis_options.yaml'
|
|
- 'scripts/**'
|
|
- 'stalwart-dev/**'
|
|
- 'ci/**'
|
|
- 'Taskfile.yml'
|
|
- 'drift_schemas/**'
|
|
- '.forgejo/workflows/ci.yml'
|
|
|
|
jobs:
|
|
check:
|
|
name: Full Project Check
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 60
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 50
|
|
|
|
- name: Check runner tools
|
|
run: |
|
|
command -v dagger >/dev/null 2>&1 || { echo "ERROR: dagger is not installed in the runner image. Add it to .forgejo/Dockerfile."; exit 1; }
|
|
command -v task >/dev/null 2>&1 || { echo "ERROR: task is not installed in the runner image. Add it to .forgejo/Dockerfile."; exit 1; }
|
|
dpkg -s stunnel4 netcat-openbsd >/dev/null 2>&1 || { echo "ERROR: stunnel4/netcat-openbsd are not installed in the runner image. Add them to .forgejo/Dockerfile."; exit 1; }
|
|
|
|
- name: Setup Dagger Remote Engine (via stunnel)
|
|
env:
|
|
DAGGER_STUNNEL_URL: ${{ secrets.DAGGER_STUNNEL_URL }}
|
|
DAGGER_CA_CERT: ${{ secrets.DAGGER_CA_CERT }}
|
|
DAGGER_CLIENT_CERT: ${{ secrets.DAGGER_CLIENT_CERT }}
|
|
DAGGER_CLIENT_KEY: ${{ secrets.DAGGER_CLIENT_KEY }}
|
|
run: scripts/setup_dagger_remote.sh
|
|
|
|
- name: Locate Docker daemon for local Dagger engine
|
|
run: |
|
|
# Skip if remote Dagger engine is already configured (preferred path)
|
|
if [ -n "${_DAGGER_RUNNER_HOST:-}" ]; then
|
|
echo "Remote Dagger engine configured, no local Docker needed."
|
|
exit 0
|
|
fi
|
|
|
|
# Try host Docker socket (DooD) if runner mounts it
|
|
if [ -S /var/run/docker.sock ]; then
|
|
if DOCKER_HOST=unix:///var/run/docker.sock docker info >/dev/null 2>&1; then
|
|
echo "Docker available via host socket."
|
|
echo "DOCKER_HOST=unix:///var/run/docker.sock" >> "$GITHUB_ENV"
|
|
exit 0
|
|
fi
|
|
fi
|
|
|
|
echo "WARNING: No remote Dagger engine and no local Docker found." >&2
|
|
echo " - Remote engine: check DAGGER_STUNNEL_URL secret and that the host proxy is running." >&2
|
|
echo " - Local Docker: runner does not expose /var/run/docker.sock." >&2
|
|
echo "CI will likely fail at the Dagger step." >&2
|
|
|
|
- name: Prune Dagger cache before check
|
|
env:
|
|
DAGGER_NO_NAG: "1"
|
|
# prune(maxUsedSpace) also reclaims named cache volumes (gradle-cache, go-build-cache, etc.)
|
|
# when total cache exceeds the limit; without args only unreferenced entries are removed.
|
|
run: |
|
|
dagger query '{ engine { localCache { prune(maxUsedSpace: "75gb", targetSpace: "50gb") } } }' || true
|
|
|
|
- name: Run Full Check Suite
|
|
env:
|
|
DAGGER_NO_NAG: "1"
|
|
run: task check-dagger
|
|
|
|
- name: Prune Dagger cache after check
|
|
if: always()
|
|
env:
|
|
DAGGER_NO_NAG: "1"
|
|
run: |
|
|
dagger query '{ engine { localCache { prune(maxUsedSpace: "75gb", targetSpace: "50gb") } } }' || true
|
|
|
|
- name: Cleanup TLS credentials
|
|
if: always()
|
|
run: rm -rf /tmp/dagger-tls /tmp/stunnel-dagger.conf /tmp/stunnel.pid
|