File tree 2 files changed +10
-4
lines changed 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
- name : Build Infix
1
+ name : Build
2
2
3
3
on :
4
4
workflow_dispatch :
19
19
target :
20
20
required : true
21
21
type : string
22
+ name :
23
+ required : true
24
+ type : string
22
25
jobs :
23
26
build :
24
- name : Build Infix ${{ inputs.target }}
27
+ name : Build ${{ inputs.name }} ${{ inputs.target }}
25
28
runs-on : [ self-hosted, latest ]
26
29
strategy :
27
30
fail-fast : false
70
73
fi
71
74
fi
72
75
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
75
79
echo "flv=$flavor" >> $GITHUB_OUTPUT
76
80
echo "Building target ${target}${flavor}_defconfig"
77
81
Original file line number Diff line number Diff line change @@ -14,11 +14,13 @@ jobs:
14
14
uses : ./.github/workflows/build.yml
15
15
with :
16
16
target : x86_64
17
+ name : Infix
17
18
18
19
build-aarch64 :
19
20
uses : ./.github/workflows/build.yml
20
21
with :
21
22
target : aarch64
23
+ name : Infix
22
24
23
25
test-run-x86_64 :
24
26
needs : build-x86_64
You can’t perform that action at this time.
0 commit comments