# ============================================================================= # repo_variables.conf — Gitea Actions Repository Variables (INI format) # Copy to repo_variables.conf and edit. # Used by phase11_custom_runners.sh to set per-repo CI dispatch variables. # ============================================================================= # # Each [section] = Gitea repository name (must exist in GITEA_ORG_NAME). # Keys = variable names. Values = literal string set via Gitea API. # Workflows access these as ${{ vars.VARIABLE_NAME }}. # # Common pattern: repos use fromJSON(vars.CI_RUNS_ON || '["ubuntu-latest"]') # in runs-on to dynamically select runners. #[my-go-repo] #CI_RUNS_ON = ["self-hosted","Linux","X64"] #[my-mobile-repo] #CI_RUNS_ON = ["self-hosted","Linux","X64"] #CI_RUNS_ON_MACOS = ["self-hosted","macOS","ARM64"] #CI_RUNS_ON_ANDROID = ["self-hosted","Linux","X64","android-emulator"]