Skip to content

Commit

Permalink
.github: bump core count for most jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
jzelinskie committed Nov 30, 2023
1 parent c057e7c commit e5409c4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- "go.mod"
lint:
name: "Lint"
runs-on: "ubicloud-standard-4"
runs-on: "ubicloud-standard-8"
steps:
- uses: "actions/checkout@v3"
- uses: "authzed/actions/setup-go@main"
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:

build:
name: "Build Binary & Image"
runs-on: "ubicloud-standard-4"
runs-on: "ubicloud-standard-8"
needs: "paths-filter"
if: |
needs.paths-filter.outputs.codechange == 'true'
Expand All @@ -96,7 +96,7 @@ jobs:

unit:
name: "Unit"
runs-on: "ubicloud-standard-4"
runs-on: "ubicloud-standard-16"
needs:
- "paths-filter"
- "lint"
Expand All @@ -114,7 +114,7 @@ jobs:

integration:
name: "Integration Tests"
runs-on: "ubicloud-standard-4"
runs-on: "ubicloud-standard-8"
needs:
- "paths-filter"
- "build"
Expand All @@ -130,7 +130,7 @@ jobs:

datastore:
name: "Datastore Tests"
runs-on: "ubicloud-standard-4"
runs-on: "ubicloud-standard-8"
needs:
- "paths-filter"
- "unit"
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:

codeql:
name: "Analyze with CodeQL"
runs-on: "ubicloud-standard-8"
runs-on: "ubicloud-standard-32"
needs: "unit"
if: |
github.ref == 'refs/heads/main'
Expand Down

0 comments on commit e5409c4

Please sign in to comment.