File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name: WF test
33on :
44 workflow_dispatch :
55
6+ # ###############################################################################
67jobs :
78 job-config :
89 runs-on : ubuntu-latest
4748 echo ${{ steps.prebuild-checks.outputs.cancel }}
4849
4950
51+ # ###############################################################################
5052 job-build :
5153 needs : [ job-config ]
5254 if : ${{ needs.job-config.outputs.cancel }} != 'true'
@@ -69,13 +71,15 @@ jobs:
6971 echo "CANCEL:"
7072 echo ${{ needs.job-config.outputs.cancel }}
7173 echo "${{ matrix.config }}" >> "Kernel_${{ matrix.config }}"
74+
7275 - name : " 👍 Upload Artifact"
7376 uses : actions/upload-artifact@v3
7477 with :
7578 name : Kernel_${{ matrix.config }}
7679 path : |
7780 Kernel_*
7881
82+ # ###############################################################################
7983 job-publish :
8084 if : ${{ needs.job-config.outputs.cancel }} != 'true'
8185 needs :
9094 - name : " ✔️ TEST matrix"
9195 run : |
9296 echo "MATRIX:"
97+ echo '${{ needs.job-config.outputs.matrix }}'
9398 echo '${{ needs.job-config.outputs.matrix }}' | jq . || true
9499 echo "CANCEL:"
95100 echo ${{ needs.job-config.outputs.cancel }}
101+
102+ - name : Artifact downloader
103+ uses : actions/download-artifact@v3
104+ path : /home/runner/kernels
105+
106+ - name : " ✔️ TEST matrix"
107+ run : |
108+ pwr
109+ ls ~ || true
110+ ls -als /home/runner
111+ ls -Rals ~/kernels
112+
113+
You can’t perform that action at this time.
0 commit comments