We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 59022f8 + 978f85d commit d66a5a8Copy full SHA for d66a5a8
.github/actions/build-test-llvm-project/action.yml
@@ -5,6 +5,10 @@ inputs:
5
arch:
6
description: Architecture to build containers for
7
required: true
8
+ build-args:
9
+ description: List of build arguments to pass along to Docker
10
+ required: false
11
+ default: NONE=none
12
file:
13
description: Dockerfile to build the container from
14
@@ -24,6 +28,7 @@ runs:
24
28
- name: Build llvm-project
25
29
uses: docker/build-push-action@v3
26
30
with:
31
+ build-args: ${{ inputs.build-args }}
27
32
context: ./llvm-project
33
file: ./llvm-project/${{ inputs.file }}
34
load: true
0 commit comments