Skip to content

Commit 11e88e3

Browse files
committed
[test] try codebuild image override
1 parent da04d47 commit 11e88e3

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/kernel-build.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,15 @@ jobs:
4949
# To run on CodeBuild, runs-on value must correspond to the AWS
5050
# CodeBuild project associated with the kernel-patches webhook
5151
# However matrix.py passes just a 'codebuild' string
52-
runs-on: >-
53-
${{
54-
contains(fromJSON(inputs.runs_on), 'codebuild')
55-
&& format('codebuild-bpf-ci-{0}-{1}', github.run_id, github.run_attempt)
56-
|| fromJSON(inputs.runs_on)
57-
}}
52+
# runs-on: >-
53+
# ${{
54+
# contains(fromJSON(inputs.runs_on), 'codebuild')
55+
# && format('codebuild-bpf-ci-{0}-{1}', github.run_id, github.run_attempt)
56+
# || fromJSON(inputs.runs_on)
57+
# }}
58+
runs-on:
59+
- ${{ format('codebuild-bpf-ci-{0}-{1}', github.run_id, github.run_attempt) }}
60+
image:custom-linux-ghcr.io/kernel-patches/builder:debian-x86_64
5861
env:
5962
ARTIFACTS_ARCHIVE: "vmlinux-${{ inputs.arch }}-${{ inputs.toolchain_full }}.tar.zst"
6063
BPF_NEXT_BASE_BRANCH: 'master'

0 commit comments

Comments
 (0)