Skip to content

Commit 11ee069

Browse files
SwiftWing21claude
andcommitted
ci: trim CI costs — drop macOS release builds, single Python version, path filters
- Rust Release: comment out 2x macOS targets ($0.062/min = 10x Linux rate) - Fleet CI: reduce matrix from 3 Python versions to 3.12 only (6 → 2 runners) - Fleet CI: add path filter so doc/launcher changes don't trigger fleet tests Saves ~70% of Actions cost per push cycle. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 76ee094 commit 11ee069

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ name: Fleet CI
33
on:
44
push:
55
branches: [main, dev]
6+
paths: ['fleet/**', 'tests/**', '.github/workflows/ci.yml']
67
pull_request:
78
branches: [main]
9+
paths: ['fleet/**', 'tests/**', '.github/workflows/ci.yml']
810

911
env:
1012
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
@@ -14,7 +16,7 @@ jobs:
1416
strategy:
1517
matrix:
1618
os: [ubuntu-latest, windows-latest]
17-
python-version: ['3.11', '3.12', '3.13']
19+
python-version: ['3.12']
1820
fail-fast: false
1921

2022
runs-on: ${{ matrix.os }}

.github/workflows/rust-release.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ jobs:
2323
- os: windows-latest
2424
target: x86_64-pc-windows-msvc
2525
artifact: biged.exe
26-
- os: macos-latest
27-
target: x86_64-apple-darwin
28-
artifact: biged
29-
- os: macos-latest
30-
target: aarch64-apple-darwin
31-
artifact: biged
26+
# macOS builds disabled — $0.062/min (10x Linux). Re-enable for stable releases.
27+
# - os: macos-latest
28+
# target: x86_64-apple-darwin
29+
# artifact: biged
30+
# - os: macos-latest
31+
# target: aarch64-apple-darwin
32+
# artifact: biged
3233

3334
defaults:
3435
run:

0 commit comments

Comments
 (0)