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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ env:
jobs:
lint:
name: Lint & Type Check
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:

test:
name: Test
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:

build:
name: Build
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:

integration-smoke:
name: Integration Smoke Tests
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
needs: [build]
if: github.event_name == 'push'
continue-on-error: true
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:

summary:
name: CI Summary
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
needs: [lint, test, build]
if: always()
steps:
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/cli-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# Basic tests without authentication
public-tests:
name: Public CLI Tests
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
# Uses built-from-source CLI to test current code against dev server
authenticated-tests:
name: Authenticated CLI Tests
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
needs: [build-test] # Ensure build passes first
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
env:
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
# Build from source test
build-test:
name: Build CLI from Source
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -246,7 +246,3 @@ jobs:
node dist/index.js --version
node dist/index.js --help
echo "✓ Built CLI works"




2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:

jobs:
build-and-push:
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
permissions:
contents: read
packages: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerhub-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
update-description:
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
steps:
- uses: actions/checkout@v4

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/publish-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# Check if this is a CLI release
# ===========================================
check:
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
outputs:
should_publish: ${{ steps.check.outputs.should_publish }}
version: ${{ steps.version.outputs.version }}
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
publish-npm:
needs: check
if: ${{ needs.check.outputs.should_publish == 'true' }}
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
defaults:
run:
working-directory: cli
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
publish-binaries:
needs: [check, publish-npm]
if: ${{ needs.check.outputs.should_publish == 'true' }}
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
defaults:
run:
working-directory: cli
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
publish-chocolatey:
needs: [check, publish-npm]
if: ${{ needs.check.outputs.platforms == 'all' || needs.check.outputs.platforms == 'npm-chocolatey' }}
runs-on: windows-latest
runs-on: [self-hosted, Windows, X64]

steps:
- name: Checkout
Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:
publish-snap:
needs: [check, publish-npm]
if: ${{ needs.check.outputs.platforms == 'all' || needs.check.outputs.platforms == 'npm-snap' }}
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]

steps:
- name: Checkout
Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:
update-homebrew:
needs: [check, publish-npm]
if: ${{ needs.check.outputs.platforms == 'all' }}
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]

steps:
- name: Checkout Homebrew tap
Expand Down Expand Up @@ -364,7 +364,7 @@ jobs:
summary:
needs: [check, publish-npm, publish-binaries, publish-chocolatey, publish-snap, update-homebrew]
if: always() && needs.check.outputs.should_publish == 'true'
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]

steps:
- name: Summary
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# Detect changes and prepare release
# ===========================================
prepare:
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
outputs:
app_changed: ${{ steps.changes.outputs.app }}
cli_changed: ${{ steps.changes.outputs.cli }}
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
release-app:
needs: prepare
if: ${{ needs.prepare.outputs.should_release_app == 'true' }}
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]

steps:
- name: Checkout
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
release-cli:
needs: prepare
if: ${{ needs.prepare.outputs.should_release_cli == 'true' }}
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]

steps:
- name: Checkout
Expand Down Expand Up @@ -419,7 +419,7 @@ jobs:
summary:
needs: [prepare, release-app, release-cli]
if: always()
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]

steps:
- name: Summary
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
stale:
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
steps:
- uses: actions/stale@v9
with:
Expand Down
Loading
Loading