Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by runtime_ci_tooling v0.14.4
# Generated by runtime_ci_tooling v0.15.0
# Configured via .runtime_ci/config.json — run 'dart run runtime_ci_tooling:manage_cicd update --workflows' to regenerate.
# Policy: test artifact retention-days = 7 (applied consistently).
name: CI
Expand Down Expand Up @@ -83,14 +83,14 @@ jobs:
if: needs.pre-check.outputs.should_run == 'true'
runs-on: ubuntu-latest
steps:
# ── shared:checkout ── keep in sync with single_platform ──
# ── shared:checkout ──
- uses: actions/checkout@v6.0.2
with:
ref: ${{ needs.auto-format.outputs.sha }}
fetch-depth: 1
persist-credentials: false

# ── shared:git-config ── keep in sync with single_platform ──
# ── shared:git-config ──
- name: Configure Git for HTTPS with Token
shell: bash
env:
Expand All @@ -102,12 +102,12 @@ jobs:
git config --global url."https://x-access-token:${GH_PAT}@github.com/open-runtime/".insteadOf "git@github.com:open-runtime/"
git config --global url."https://x-access-token:${GH_PAT}@github.com/pieces-app/".insteadOf "git@github.com:pieces-app/"

# ── shared:dart-setup ── keep in sync with single_platform ──
# ── shared:dart-setup ──
- uses: dart-lang/setup-dart@v1.7.1
with:
sdk: "3.9.2"

# ── shared:pub-cache ── keep in sync with single_platform ──
# ── shared:pub-cache ──
# Windows: %LOCALAPPDATA%\Pub\Cache (Dart default). Unix: ~/.pub-cache
- name: Cache Dart pub dependencies
uses: actions/cache@v5.0.3
Expand All @@ -116,18 +116,18 @@ jobs:
key: ${{ runner.os }}-${{ runner.arch }}-dart-pub-${{ hashFiles('**/pubspec.yaml') }}
restore-keys: ${{ runner.os }}-${{ runner.arch }}-dart-pub-

# ── shared:proto-setup ── keep in sync with single_platform ──
# ── shared:pub-get ── keep in sync with single_platform ──
# ── shared:proto-setup ──
# ── shared:pub-get ──
- run: dart pub get
env:
GIT_LFS_SKIP_SMUDGE: "1"

- name: Run build_runner
run: dart run build_runner build --delete-conflicting-outputs

# ── shared:analysis-cache ── keep in sync with single_platform ──
# ── shared:proto-verify ── keep in sync with single_platform ──
# ── shared:analyze ── keep in sync with single_platform ──
# ── shared:analysis-cache ──
# ── shared:proto-verify ──
# ── shared:analyze ──
- name: Analyze
run: |
dart analyze 2>&1 | tee "$RUNNER_TEMP/analysis.txt"
Expand All @@ -136,7 +136,7 @@ jobs:
exit 1
fi

# ── shared:sub-packages ── keep in sync with single_platform ──
# ── shared:sub-packages ──
test:
needs: [pre-check, analyze, auto-format]
if: needs.pre-check.outputs.should_run == 'true'
Expand All @@ -146,14 +146,14 @@ jobs:
matrix:
include: [{"platform_id":"ubuntu-x64","runner":"ubuntu-latest","os_family":"linux","arch":"x64"},{"platform_id":"ubuntu-arm64","runner":"runtime-ubuntu-24.04-arm64-208gb-64core","os_family":"linux","arch":"arm64"},{"platform_id":"macos-arm64","runner":"macos-latest","os_family":"macos","arch":"arm64"},{"platform_id":"macos-x64","runner":"macos-15-large","os_family":"macos","arch":"x64"},{"platform_id":"windows-x64","runner":"windows-latest","os_family":"windows","arch":"x64"},{"platform_id":"windows-arm64","runner":"runtime-windows-11-arm64-208gb-64core","os_family":"windows","arch":"arm64"}]
steps:
# ── shared:checkout ── keep in sync with single_platform ──
# ── shared:checkout ──
- uses: actions/checkout@v6.0.2
with:
ref: ${{ needs.auto-format.outputs.sha }}
fetch-depth: 1
persist-credentials: false

# ── shared:git-config ── keep in sync with single_platform ──
# ── shared:git-config ──
- name: Configure Git for HTTPS with Token
shell: bash
env:
Expand All @@ -165,12 +165,12 @@ jobs:
git config --global url."https://x-access-token:${GH_PAT}@github.com/open-runtime/".insteadOf "git@github.com:open-runtime/"
git config --global url."https://x-access-token:${GH_PAT}@github.com/pieces-app/".insteadOf "git@github.com:pieces-app/"

# ── shared:dart-setup ── keep in sync with single_platform ──
# ── shared:dart-setup ──
- uses: dart-lang/setup-dart@v1.7.1
with:
sdk: "3.9.2"

# ── shared:pub-cache ── keep in sync with single_platform ──
# ── shared:pub-cache ──
# Windows: %LOCALAPPDATA%\Pub\Cache (Dart default). Unix: ~/.pub-cache
- name: Cache Dart pub dependencies
uses: actions/cache@v5.0.3
Expand All @@ -179,8 +179,8 @@ jobs:
key: ${{ runner.os }}-${{ runner.arch }}-dart-pub-${{ hashFiles('**/pubspec.yaml') }}
restore-keys: ${{ runner.os }}-${{ runner.arch }}-dart-pub-

# ── shared:proto-setup ── keep in sync with single_platform ──
# ── shared:pub-get ── keep in sync with single_platform ──
# ── shared:proto-setup ──
# ── shared:pub-get ──
- run: dart pub get
env:
GIT_LFS_SKIP_SMUDGE: "1"
Expand All @@ -191,7 +191,7 @@ jobs:
# --- BEGIN USER: pre-test ---
# --- END USER: pre-test ---

# ── shared:test ── keep in sync with single_platform ──
# ── shared:test ──
- name: Test
shell: bash
run: |
Expand Down
1 change: 1 addition & 0 deletions .runtime_ci/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
"line_length": 120,
"artifact_retention_days": 7,
"personal_access_token_secret": "TSAVO_AT_PIECES_PERSONAL_ACCESS_TOKEN",
"git_orgs": ["open-runtime", "pieces-app"],
"features": {
"proto": false,
"lfs": false,
Expand Down
10 changes: 5 additions & 5 deletions .runtime_ci/template_versions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"tooling_version": "0.14.4",
"updated_at": "2026-03-04T01:43:45.360518Z",
"tooling_version": "0.15.0",
"updated_at": "2026-03-04T18:46:17.822889Z",
"templates": {
"gemini_settings": {
"hash": "93983f49dd2f40d2ed245271854946d8916b8f0698ed2cfaf12058305baa0b08",
Expand All @@ -23,9 +23,9 @@
"updated_at": "2026-02-24T00:59:57.620091Z"
},
"workflow_ci": {
"hash": "e2df47cd0f26ec20fcb7c01530f5ad84c5877c8397518bf4d46de5f99bb8bbf2",
"consumer_hash": "c23d7a119a57783b1b6b3472ca7b52a912fa67435e6d0f5448c414e1274a025b",
"updated_at": "2026-03-04T01:43:45.357518Z"
"hash": "1d5ab4ac372b1d5c9ff1ad9cd2cc634fea66a98d264faa9e487acfc873bf7602",
"consumer_hash": "f25b1db7a45db7631808fb1eb3135df963eece9935e0eabd89aff3d6ffe67d73",
"updated_at": "2026-03-04T18:46:17.823530Z"
},
"workflow_release": {
"hash": "0db4e621f478e5f255292bc3d9a0c1a6dcd78ebe73fd91d87b7facd635898f64",
Expand Down
Loading