CI: rename Ubuntu jobs in master workflow to clarify
This commit is contained in:
6
.github/workflows/CI_master.yml
vendored
6
.github/workflows/CI_master.yml
vendored
@@ -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:
|
||||
|
||||
4
.github/workflows/sub_wrapup.yml
vendored
4
.github/workflows/sub_wrapup.yml
vendored
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user