Skip to content

Commit

Permalink
Custom runners for slow/intensive workflow jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
manicminer committed Nov 19, 2022
1 parent 2681c6c commit 05f6f50
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gencheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

jobs:
gencheck:
runs-on: ubuntu-latest
runs-on: [custom, linux, large]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:

jobs:
test:
runs-on: ubuntu-latest
runs-on: [custom, linux, large]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:

jobs:
website-lint:
runs-on: ubuntu-latest
runs-on: [custom, linux, large]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
Expand Down

0 comments on commit 05f6f50

Please sign in to comment.