Skip to content

Commit

Permalink
Merge pull request #1482 from jzelinskie/multicore-ci
Browse files Browse the repository at this point in the history
.github: use 4-core runners for more jobs
  • Loading branch information
jzelinskie authored Aug 9, 2023
2 parents 026190f + 776b444 commit 41cec17
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

image-build:
name: "Build Container Image"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-latest-4-cores"
needs: "paths-filter"
if: |
needs.paths-filter.outputs.codechange == 'true'
Expand All @@ -71,7 +71,7 @@ jobs:

unit:
name: "Unit"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-latest-4-cores"
needs: "paths-filter"
if: |
needs.paths-filter.outputs.codechange == 'true'
Expand All @@ -85,7 +85,7 @@ jobs:

integration:
name: "Integration Tests"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-latest-4-cores"
needs: "paths-filter"
if: |
needs.paths-filter.outputs.codechange == 'true'
Expand All @@ -99,7 +99,7 @@ jobs:

datastore:
name: "Datastore Tests"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-latest-4-cores"
needs: "paths-filter"
if: |
needs.paths-filter.outputs.codechange == 'true'
Expand All @@ -117,7 +117,7 @@ jobs:

datastoreconsistency:
name: "Datastore Consistency Tests"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-latest-4-cores"
needs: "paths-filter"
if: |
needs.paths-filter.outputs.codechange == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
jobs:
go-lint:
name: "Lint Go"
runs-on: "ubuntu-latest"
runs-on: "ubuntu-latest-4-cores"
steps:
- uses: "actions/checkout@v3"
- uses: "authzed/actions/setup-go@main"
Expand Down

0 comments on commit 41cec17

Please sign in to comment.