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.
1 parent bcb0acc commit 7ce1860Copy full SHA for 7ce1860
.github/workflows/integration-tests.yml
@@ -18,15 +18,20 @@ on:
18
type: string
19
default: ''
20
21
+ # this is temporary, will be removed once Konflux builds have been
22
+ # modified to support Arm
23
+ vm_list:
24
+ description: JSON list of VMs to test on
25
+ default: '["fedora-coreos","fcarm"]'
26
+ type: string
27
+
28
jobs:
29
integration-tests:
30
runs-on: ubuntu-24.04
31
strategy:
32
fail-fast: false
33
matrix:
- vm:
- - fedora-coreos
- - fcarm
34
+ vm: "${{ fromJSON(inputs.vm_list) }}"
35
36
steps:
37
- uses: actions/checkout@v4
.github/workflows/konflux-tests.yml
@@ -50,4 +50,5 @@ jobs:
50
registry: quay.io/rhacs-eng/fact
51
tag: ${{ needs.init.outputs.fact-tag }}
52
job-tag: konf
53
+ vm_list: '["fedora-coreos"]'
54
secrets: inherit
0 commit comments