CI: rename Ubuntu jobs in master workflow to clarify

This commit is contained in:
0penBrain
2023-02-12 16:27:46 +01:00
parent bdc23a5b02
commit ed5b4ecd23
2 changed files with 5 additions and 5 deletions

View File

@@ -37,13 +37,13 @@ jobs:
with:
artifactBasename: Prepare-${{ github.run_id }}
Build2004:
Ubuntu_20-04:
needs: [Prepare]
uses: ./.github/workflows/sub_buildUbuntu2004.yml
with:
artifactBasename: Build2004-${{ github.run_id }}
Build2204:
Ubuntu_22-04:
needs: [Prepare]
uses: ./.github/workflows/sub_buildUbuntu2204.yml
with:
@@ -59,7 +59,7 @@ jobs:
changedPythonFiles: ${{ needs.Prepare.outputs.changedPythonFiles }}
WrapUp:
needs: [Prepare, Build2004, Build2204, Lint]
needs: [Prepare, Ubuntu_20-04, Ubuntu_22-04, Lint]
if: always()
uses: ./.github/workflows/sub_wrapup.yml
with:

View File

@@ -66,7 +66,7 @@ jobs:
for step in $(jq -r "keys_unsorted | .[]" data)
do
echo "Processing step $step"
result=$(jq -r ".$step.result" data)
result=$(jq -r ".\"$step\".result" data)
icon=":heavy_check_mark:"
if [ $result == 'failure' ]
then
@@ -87,7 +87,7 @@ jobs:
then
echo "Step was cancelled when executing, report may be incomplete" | tee -a report.md
fi
report=$(jq -r ".$step.outputs.reportFile" data)
report=$(jq -r ".\"$step\".outputs.reportFile" data)
if [ $report ]
then
echo "Report for step $step is $report"