Skip to content
Open
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
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
# Basic loading verification (fast, no nix required)
verify-rules:
name: Verify Rules Load
# Stays on ubuntu-latest: uses bazelbuild/setup-bazelisk; Bazel is not pre-installed on smithy.
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -42,6 +43,7 @@ jobs:
# Full build with nix toolchain (Linux)
build:
name: Build Example (Linux)
# Stays on ubuntu-latest: needs Nix + Bazel + Rocq toolchain, none of which are on smithy.
runs-on: ubuntu-latest
permissions:
id-token: write
Expand Down Expand Up @@ -122,6 +124,7 @@ jobs:
# macOS build
build-macos:
name: Build Example (macOS)
# Stays on macos-latest: smithy fleet is Linux-only.
runs-on: macos-latest
permissions:
id-token: write
Expand Down Expand Up @@ -175,7 +178,7 @@ jobs:
# Buildifier check
buildifier:
name: Buildifier Check
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, light]

steps:
- name: Checkout repository
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci_comprehensive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
# Multi-platform verification
verify-multiplatform:
name: Verify Rules (${{ matrix.os }})
# Stays on hosted: needs Bazel (not on smithy) and macOS in matrix (smithy is Linux-only).
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:
docs:
name: Documentation Check
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, light]

steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:

jobs:
publish:
# Stays on hosted: reusable workflow from bazel-contrib pins its own runner; not callable to smithy.
uses: bazel-contrib/publish-to-bcr/.github/workflows/publish.yaml@v1.1.0
with:
tag_name: ${{ github.event.release.tag_name || inputs.tag_name }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/quick_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
quick-test:
name: Quick Test
# Stays on ubuntu-latest: uses bazelbuild/setup-bazelisk and runs bazel; Bazel not on smithy.
runs-on: ubuntu-latest

steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
jobs:
release:
name: Create Release
# Stays on ubuntu-latest: build step runs `bazel build`; Bazel not on smithy.
runs-on: ubuntu-latest

steps:
Expand Down
Loading