File tree Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Original file line number Diff line number Diff line change 55 push :
66 branches : [testing-ci]
77
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
10+ cancel-in-progress : true
811
912jobs :
1013
3134 uses : actions/upload-artifact@v4
3235 with :
3336 name : lib_cpu_${{ matrix.os }}_${{ matrix.arch }}
34- path : output/*
37+ path : output/${{ matrix.os }}/${{ matrix.arch }}/ *
3538 retention-days : 7
3639
3740 build-cuda :
7275 uses : actions/upload-artifact@v4
7376 with :
7477 name : lib_cuda_${{matrix.cuda_version}}_${{ matrix.os }}_${{ matrix.arch }}
75- path : output/*
78+ path : output/${{ matrix.os }}/${{ matrix.arch }}/ *
7679 retention-days : 7
7780
7881 cpu-tests :
8790 env :
8891 BNB_TEST_DEVICE : cpu
8992 steps :
90- - name : Show CPU Information
91- shell : bash
92- run : |
93- if [[ $RUNNER_OS == 'Linux' ]]; then
94- lscpu
95- else
96- systeminfo | findstr /C:"Processor"
97- fi
98-
9993 - uses : actions/checkout@v4
10094
10195 - name : Download build artifact
@@ -154,6 +148,10 @@ jobs:
154148 path : bitsandbytes/
155149 merge-multiple : true
156150
151+ - name : Show files
152+ run : ls -lR .
153+ shell : bash
154+
157155 - name : Setup Python
158156 uses : actions/setup-python@v5
159157 with :
You can’t perform that action at this time.
0 commit comments