Skip to content

Commit

Permalink
.github: ARM runners for platform-agnostic tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jzelinskie authored and vroldanbet committed Mar 19, 2024
1 parent 32e903f commit de58fc0
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 @@ -15,12 +15,12 @@ env:
DOCKERHUB_PUBLIC_USER: "spicedbgithubactions"
jobs:
paths-filter:
runs-on: "buildjet-2vcpu-ubuntu-2204"
runs-on: "buildjet-2vcpu-ubuntu-2204-arm"
outputs:
codechange: "${{ steps.code-filter.outputs.codechange }}"
protochange: "${{ steps.proto-filter.outputs.protochange }}"
steps:
- uses: "actions/checkout@v2"
- uses: "actions/checkout@v3"
- uses: "dorny/paths-filter@v2"
id: "code-filter"
with:
Expand All @@ -45,7 +45,7 @@ jobs:
- "go.mod"
build:
name: "Build Binary & Image"
runs-on: "buildjet-4vcpu-ubuntu-2204"
runs-on: "buildjet-4vcpu-ubuntu-2204-arm"
needs: "paths-filter"
if: |
needs.paths-filter.outputs.codechange == 'true'
Expand All @@ -62,7 +62,7 @@ jobs:

unit:
name: "Unit"
runs-on: "buildjet-4vcpu-ubuntu-2204"
runs-on: "buildjet-4vcpu-ubuntu-2204-arm"
needs: "paths-filter"
if: |
needs.paths-filter.outputs.codechange == 'true'
Expand All @@ -74,7 +74,7 @@ jobs:

integration:
name: "Integration Tests"
runs-on: "buildjet-4vcpu-ubuntu-2204"
runs-on: "buildjet-4vcpu-ubuntu-2204-arm"
needs: "paths-filter"
if: |
needs.paths-filter.outputs.codechange == 'true'
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
path: "e2e/newenemy/*.log"
analyzers-unit-tests:
name: "Analyzers Unit Tests"
runs-on: "buildjet-2vcpu-ubuntu-2204"
runs-on: "buildjet-2vcpu-ubuntu-2204-arm"
needs: "paths-filter"
if: |
needs.paths-filter.outputs.codechange == 'true'
Expand Down

0 comments on commit de58fc0

Please sign in to comment.