Skip to content

Commit 89e8dc9

Browse files
committed
add artifact upload step to allow examining the build result
1 parent bda591f commit 89e8dc9

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ jobs:
9191
cp $(cygpath $OPENBLAS_ROOT)/$BITS/bin/*.dll .
9292
./test_dyn.exe
9393
94+
- uses: actions/upload-artifact@v3
95+
with:
96+
path: builds/openblas*.zip
97+
9498
- name: Upload
9599
env:
96100
OPENBLAS_LIBS_STAGING_UPLOAD_TOKEN: ${{ secrets.MULTIBUILD_WHEELS_STAGING_ACCESS }}

.github/workflows/multibuild.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,11 @@ jobs:
100100
clean_code $REPO_DIR $OPENBLAS_COMMIT
101101
echo "------ BUILD LIB --------"
102102
build_lib "$PLAT" "$INTERFACE64"
103+
104+
- uses: actions/upload-artifact@v3
105+
with:
106+
path: libs/openblas*.tar.gz
107+
103108
- name: Upload tarballs
104109
run: |
105110
set -ex

0 commit comments

Comments
 (0)