Skip to content

Commit 5387003

Browse files
committed
update to latest HEAD, split build into shared and tests
1 parent 65bad26 commit 5387003

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.github/workflows/posix.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ on:
99
schedule:
1010
- cron: '0 0 * * 0'
1111

12+
env:
13+
REPO_DIR: OpenBLAS
14+
OPENBLAS_COMMIT: "0929865"
15+
MACOSX_DEPLOYMENT_TARGET: 10.9
16+
1217
jobs:
1318
build:
1419
runs-on: ${{ matrix.os }}
@@ -46,10 +51,7 @@ jobs:
4651
- PLAT: i686
4752
INTERFACE64: '1'
4853
env:
49-
REPO_DIR: OpenBLAS
50-
OPENBLAS_COMMIT: "fb7c53c5e"
5154
NIGHTLY: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
52-
MACOSX_DEPLOYMENT_TARGET: 10.9
5355
MB_PYTHON_VERSION: ${{ matrix.python-version }}
5456
TRAVIS_PYTHON_VERSION: ${{ matrix.python-version }}
5557
MB_ML_LIBC: ${{ matrix.MB_ML_LIBC }}

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
workflow_dispatch: null
99

1010
env:
11-
OPENBLAS_COMMIT: "fb7c53c5e"
11+
OPENBLAS_COMMIT: "0929865"
1212
OPENBLAS_ROOT: "c:\\opt"
1313
# Preserve working directory for calls into bash
1414
# Without this, invoking bash will cd to the home directory

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ env:
22
global:
33
# The archive that gets built has name from ``git describe`` on this
44
# commit.
5-
- OPENBLAS_COMMIT: "fb7c53c5e"
5+
- OPENBLAS_COMMIT: "0929865"
66
- REPO_DIR=OpenBLAS
77

88
sudo: required

tools/build_steps.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,10 @@ function do_build_lib {
174174
CFLAGS="$CFLAGS -fvisibility=protected -Wno-uninitialized" \
175175
make BUFFERSIZE=20 DYNAMIC_ARCH=1 \
176176
USE_OPENMP=0 NUM_THREADS=64 \
177-
BINARY=$bitness $interface_flags $target_flags
177+
BINARY=$bitness $interface_flags $target_flags shared > /dev/null
178+
make BUFFERSIZE=20 DYNAMIC_ARCH=1 \
179+
USE_OPENMP=0 NUM_THREADS=64 \
180+
BINARY=$bitness $interface_flags $target_flags tests
178181
make PREFIX=$BUILD_PREFIX $interface_flags install
179182
popd
180183
stop_spinner

0 commit comments

Comments
 (0)