Skip to content

Commit

Permalink
ci: Update to newer self-hosted runners
Browse files Browse the repository at this point in the history
  • Loading branch information
Eta0 committed Dec 3, 2024
1 parent 007a325 commit e39588f
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
build:
name: Building ${{ inputs.dockerfile }}
runs-on: [cw]
container: 'ghcr.io/coreweave/github-actions-images/github-base-runner:v1.4.0'
container: 'ghcr.io/coreweave/github-actions-images/github-base-runner:v1.6.0'
defaults:
run:
shell: bash
Expand All @@ -58,10 +58,22 @@ jobs:
with:
driver: remote
endpoint: ${{ secrets.BUILDKIT_CONSUMER_ENDPOINT }}
append: |
- endpoint: ${{ secrets.BUILDKIT_CONSUMER_AMD64_ENDPOINT }}
platforms: linux/amd64
- endpoint: ${{ secrets.BUILDKIT_CONSUMER_ARM64_ENDPOINT }}
platforms: linux/arm64
driver-opts: env.BUILDKIT_STEP_LOG_MAX_SIZE=10485760,env.BUILDKIT_STEP_LOG_MAX_SPEED=-1
env:
BUILDER_NODE_0_AUTH_TLS_CACERT: ${{ steps.client-certs.outputs.TLS_CACERT }}
BUILDER_NODE_0_AUTH_TLS_CERT: ${{ steps.client-certs.outputs.TLS_CERT }}
BUILDER_NODE_0_AUTH_TLS_KEY: ${{ steps.client-certs.outputs.TLS_KEY }}
BUILDER_NODE_1_AUTH_TLS_CACERT: ${{ steps.client-certs.outputs.TLS_CACERT }}
BUILDER_NODE_1_AUTH_TLS_CERT: ${{ steps.client-certs.outputs.TLS_CERT }}
BUILDER_NODE_1_AUTH_TLS_KEY: ${{ steps.client-certs.outputs.TLS_KEY }}
BUILDER_NODE_2_AUTH_TLS_CACERT: ${{ steps.client-certs.outputs.TLS_CACERT }}
BUILDER_NODE_2_AUTH_TLS_CERT: ${{ steps.client-certs.outputs.TLS_CERT }}
BUILDER_NODE_2_AUTH_TLS_KEY: ${{ steps.client-certs.outputs.TLS_KEY }}
- name: Get base registry
run: |
echo "REGISTRY=ghcr.io/${GITHUB_REPOSITORY,,}" >> $GITHUB_ENV
Expand Down

0 comments on commit e39588f

Please sign in to comment.