Skip to content

Commit 019f06a

Browse files
authored
Merge pull request #77 from mattip/pkgconfig
Pkgconfig
2 parents 55c1fd1 + 89e8dc9 commit 019f06a

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
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

OpenBLAS

travis-ci/build_steps.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ function do_build_lib {
183183
$BUILD_PREFIX/include/*blas* \
184184
$BUILD_PREFIX/include/*lapack* \
185185
$BUILD_PREFIX/lib/libopenblas* \
186+
$BUILD_PREFIX/lib/pkgconfig* \
186187
$BUILD_PREFIX/lib/cmake/openblas
187188
}
188189

0 commit comments

Comments
 (0)