We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c758612 commit 10def57Copy full SHA for 10def57
.github/workflows/build.yml
@@ -38,7 +38,7 @@ jobs:
38
echo "BUILD_BITS=$BITS" >> $GITHUB_ENV
39
# For interpretation of MSYSTEM, see:
40
# https://sourceforge.net/p/msys2/discussion/general/thread/b7dfdac8/#3939
41
- if ($BITS" -eq 32 ) {
+ if ($BITS -eq 32) {
42
echo "PLAT=i686" >> $GITHUB_ENV
43
echo "MSYSTEM=MINGW32" >> $GITHUB_ENV
44
echo "LDFLAGS='-static -static-libgcc'" >> $GITHUB_ENV
@@ -55,6 +55,8 @@ jobs:
55
- name: Build
56
run: |
57
git submodule update --init --recursive
58
+ echo "Var: $env:CHERE_INVOKING"
59
+ & $env:BASH_PATH -lc pwd
60
& $env:BASH_PATH -lc tools\build_openblas.sh
61
62
- name: Test
0 commit comments