Skip to content

Commit 7f1782b

Browse files
committed
Update to current develop commit
1 parent 4cd205d commit 7f1782b

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

.github/workflows/posix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
env:
1313
REPO_DIR: OpenBLAS
14-
OPENBLAS_COMMIT: "v0.3.29"
14+
OPENBLAS_COMMIT: "v0.3.29-265-gb5456c1b"
1515
MACOSX_DEPLOYMENT_TARGET: 10.9
1616

1717
jobs:

.github/workflows/windows-arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [ main ]
88

99
env:
10-
OPENBLAS_COMMIT: "v0.3.29"
10+
OPENBLAS_COMMIT: "v0.3.29-265-gb5456c1b"
1111
OPENBLAS_ROOT: "c:\\opt"
1212
# Preserve working directory for calls into bash
1313
# Without this, invoking bash will cd to the home directory

.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: "v0.3.29"
11+
OPENBLAS_COMMIT: "v0.3.29-265-gb5456c1b"
1212
OPENBLAS_ROOT: "c:\\opt"
1313
# Preserve working directory for calls into bash
1414
# Without this, invoking bash will cd to the home directory

OpenBLAS

tools/build_steps_win_arm64.bat

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@
77
:: if_bits (default interface size, 32 or 64, unspec -> 32)
88
:: If INTERFACE64 environment variable is 1, then if_bits defaults to 64
99
:: Expects these binaries on the PATH:
10-
:: clang-cl, flang-new, cmake, perl
10+
:: clang-cl, flang-new, cmake, perl
11+
:: Uses environment variable:
12+
:: OPENBLAS_COMMIT (unspec -> current submodule commit, if contains
13+
:: Windows on ARM build fixes (see below), otherwise earliest commit
14+
:: with those fixes).
1115

1216
:: First commit containing WoA build fixes.
1317
:: Minimum OpenBLAS commit to build; we'll update to this if commit not
@@ -62,6 +66,10 @@ if errorlevel 1 exit /b 1
6266

6367
:: Enter OpenBLAS directory and checkout buildable commit
6468
cd OpenBLAS
69+
if defined OPENBLAS_COMMIT (
70+
echo Checking out OpenBLAS commit %OPENBLAS_COMMIT%
71+
git checkout %OPENBLAS_COMMIT%
72+
)
6573
git merge-base --is-ancestor %first_woa_buildable_commit% HEAD 2>NUL
6674
if errorlevel 1 (
6775
echo Updating to WoA buildable commit for OpenBLAS

0 commit comments

Comments
 (0)