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 committed Oct 26, 2023
1 parent 294aa37 commit c2be597
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 @@ -14,12 +14,12 @@ env:
GO_VERSION: "~1.21.3"
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 @@ -44,7 +44,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 @@ -59,7 +59,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 @@ -73,7 +73,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 @@ -159,7 +159,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 c2be597

Please sign in to comment.