Skip to content

Commit 2df730c

Browse files
Update
1 parent 03a27b0 commit 2df730c

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
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

912
jobs:
1013

@@ -31,7 +34,7 @@ jobs:
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:
@@ -72,7 +75,7 @@ jobs:
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:
@@ -87,15 +90,6 @@ jobs:
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:

0 commit comments

Comments
 (0)