Skip to content

Commit 01e54c2

Browse files
committed
ci: move even the rest of checks to self-hosted machines
1 parent a74ddcc commit 01e54c2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
workflow_dispatch:
66
jobs:
77
CompatHelper:
8-
runs-on: ubuntu-latest
8+
runs-on: self-hosted
99
steps:
1010
- name: Pkg.add("CompatHelper")
1111
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'

.github/workflows/FormatCheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: ${{ matrix.os }}
13+
runs-on: self-hosted
1414
strategy:
1515
matrix:
1616
julia-version: [1]

.github/workflows/Invalidations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# Only run on PRs to the default branch.
1515
# In the PR trigger above branches can be specified only explicitly whereas this check should work for master, main, or any other default branch
1616
if: github.base_ref == github.event.repository.default_branch
17-
runs-on: ubuntu-latest
17+
runs-on: self-hosted
1818
steps:
1919
- uses: julia-actions/setup-julia@v1
2020
with:
@@ -30,7 +30,7 @@ jobs:
3030
- uses: julia-actions/julia-buildpkg@v1
3131
- uses: julia-actions/julia-invalidations@v1
3232
id: invs_default
33-
33+
3434
- name: Report invalidation counts
3535
run: |
3636
echo "Invalidations on default branch: ${{ steps.invs_default.outputs.total }} (${{ steps.invs_default.outputs.deps }} via deps)" >> $GITHUB_STEP_SUMMARY

.github/workflows/TagBot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
TagBot:
99
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10-
runs-on: ubuntu-latest
10+
runs-on: self-hosted
1111
steps:
1212
- uses: JuliaRegistries/TagBot@v1
1313
with:

0 commit comments

Comments
 (0)