File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1- name : Build Infix
1+ name : Build
22
33on :
44 workflow_dispatch :
1919 target :
2020 required : true
2121 type : string
22+ name :
23+ required : true
24+ type : string
2225jobs :
2326 build :
24- name : Build Infix ${{ inputs.target }}
27+ name : Build ${{ inputs.name }} ${{ inputs.target }}
2528 runs-on : [ self-hosted, latest ]
2629 strategy :
2730 fail-fast : false
7073 fi
7174 fi
7275 target=${{ inputs.target }}
73- echo "dir=infix-$target" >> $GITHUB_OUTPUT
74- echo "tgz=infix-$target.tar.gz" >> $GITHUB_OUTPUT
76+ name=${{ inputs.name }}
77+ echo "dir=${name}-${target}" >> $GITHUB_OUTPUT
78+ echo "tgz=${name}-${target}.tar.gz" >> $GITHUB_OUTPUT
7579 echo "flv=$flavor" >> $GITHUB_OUTPUT
7680 echo "Building target ${target}${flavor}_defconfig"
7781
Original file line number Diff line number Diff line change @@ -14,11 +14,13 @@ jobs:
1414 uses : ./.github/workflows/build.yml
1515 with :
1616 target : x86_64
17+ name : infix
1718
1819 build-aarch64 :
1920 uses : ./.github/workflows/build.yml
2021 with :
2122 target : aarch64
23+ name : infix
2224
2325 test-run-x86_64 :
2426 needs : build-x86_64
You can’t perform that action at this time.
0 commit comments