Skip to content

Commit 6a658f9

Browse files
authored
Download artifact test
1 parent 127d3c3 commit 6a658f9

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/Matrix XP.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: WF test
33
on:
44
workflow_dispatch:
55

6+
################################################################################
67
jobs:
78
job-config:
89
runs-on: ubuntu-latest
@@ -47,6 +48,7 @@ jobs:
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:
@@ -90,6 +94,20 @@ jobs:
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+

0 commit comments

Comments
 (0)