Skip to content

Commit

Permalink
move more jobs to self-hosted runners (#947)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Martin authored Jan 24, 2024
1 parent 53fd544 commit bcb2372
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/close-stale-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
close-issues:
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
permissions:
issues: write
pull-requests: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/py-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
build_python_wheels:
name: Build Python wheel and sdist
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]

steps:
- uses: actions/checkout@v4
Expand All @@ -39,7 +39,7 @@ jobs:

build_docker_container:
name: Build Docker image for Census Builder
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
permissions: # these permissions must be set for AWS auth to work!
id-token: write
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/py-dependency-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [single-cell-8c64g-runner, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]

runs-on: ${{matrix.os}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/py-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
pre_commit_checks:
name: pre-commit checks
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
Expand Down

0 comments on commit bcb2372

Please sign in to comment.