Skip to content

Commit

Permalink
Use same runner, but more CPU
Browse files Browse the repository at this point in the history
Signed-off-by: Dharmit Shah <[email protected]>
  • Loading branch information
dharmit committed Aug 13, 2024
1 parent 3e42081 commit 9f948c4
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- x64
- arm64
name : CI
runs-on : runs-on,image=ubuntu22-full-${{ matrix.arch }},runner=2cpu-linux-${{ matrix.arch }},run-id=${{ github.run_id }}
runs-on : runs-on,image=ubuntu22-full-${{ matrix.arch }},runner=4cpu-linux-${{ matrix.arch }},run-id=${{ github.run_id }}
outputs:
k3sversions: ${{ steps.support.outputs.k3sversions }}
steps:
Expand All @@ -56,21 +56,20 @@ jobs:
needs : [
build
]
runs-on : ${{ matrix.os }}
runs-on : runs-on,image=ubuntu22-full-${{ matrix.arch }},runner=4cpu-linux-${{ matrix.arch }},run-id=${{ github.run_id }}
strategy:
matrix:
os : [
ubuntu-latest,
org--rancher--arm64-containers
]
arch:
- x64
- arm64
K3S_VERSION : ${{ fromJSON(needs.build.outputs.k3sversions) }}
steps:
- name : Checkout repository
uses : actions/checkout@v4
- name : Fetch build artifacts
uses: actions/download-artifact@v4
with:
name: bro-build-artifacts-${{ matrix.os }}
name: bro-build-artifacts-${{ matrix.arch }}
path: ./dist/artifacts/
- name : Debug
run : ls -R ./dist/artifacts
Expand Down

0 comments on commit 9f948c4

Please sign in to comment.