forked from rpms/leapp-repository
37 lines
1.9 KiB
Diff
37 lines
1.9 KiB
Diff
From 3862be2a250964e5459eda6538b2fdb8ae1b9c39 Mon Sep 17 00:00:00 2001
|
|
From: ina vasilevskaya <ivasilev@redhat.com>
|
|
Date: Fri, 1 Apr 2022 14:16:12 +0200
|
|
Subject: [PATCH 05/39] Switch to semicolon build separator in tmt-tests (#873)
|
|
|
|
Official github action separates test artifacts string by ; only,
|
|
so in order to test multiple artifacts this has to land.
|
|
---
|
|
.github/workflows/tmt-tests.yml | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/.github/workflows/tmt-tests.yml b/.github/workflows/tmt-tests.yml
|
|
index 5cf21e0b..ef68830e 100644
|
|
--- a/.github/workflows/tmt-tests.yml
|
|
+++ b/.github/workflows/tmt-tests.yml
|
|
@@ -139,7 +139,7 @@ jobs:
|
|
- name: Schedule regression testing for 7to8
|
|
id: run_test_7to8
|
|
env:
|
|
- ARTIFACTS: ${{ steps.leapp_pr_regex_match.outputs.match != '' && format('{0},{1}', steps.copr_build_leapp.outputs.copr_id, steps.copr_build.outputs.copr_id) || steps.copr_build.outputs.copr_id }}
|
|
+ ARTIFACTS: ${{ steps.leapp_pr_regex_match.outputs.match != '' && format('{0};{1}', steps.copr_build_leapp.outputs.copr_id, steps.copr_build.outputs.copr_id) || steps.copr_build.outputs.copr_id }}
|
|
uses: sclorg/testing-farm-as-github-action@v1.2.9
|
|
with:
|
|
# required
|
|
@@ -166,7 +166,7 @@ jobs:
|
|
- name: Schedule regression testing for 8to9
|
|
id: run_test_8to9
|
|
env:
|
|
- ARTIFACTS: ${{ steps.leapp_pr_regex_match.outputs.match != '' && format('{0},{1}', steps.copr_build_leapp.outputs.copr_id, steps.copr_build.outputs.copr_id) || steps.copr_build.outputs.copr_id }}
|
|
+ ARTIFACTS: ${{ steps.leapp_pr_regex_match.outputs.match != '' && format('{0};{1}', steps.copr_build_leapp.outputs.copr_id, steps.copr_build.outputs.copr_id) || steps.copr_build.outputs.copr_id }}
|
|
uses: sclorg/testing-farm-as-github-action@v1.2.9
|
|
with:
|
|
# required
|
|
--
|
|
2.35.3
|
|
|