File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 96
96
with :
97
97
xcode-version : ' 14.3'
98
98
99
+ - name : Allow docker with qemu
100
+ if : ${{ matrix.PLAT == "aarch64" }}
101
+ run : |
102
+ sudo apt-get update -q -y
103
+ sudo apt-get -qq install -y qemu qemu-user-static
104
+ sudo docker run --rm --privileged multiarch/qemu-user-static --reset -p yes --credential yes
105
+
99
106
- name : Print some Environment variable
100
107
run : |
101
108
echo "PLAT: ${PLAT}"
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ function do_build_lib {
173
173
pushd OpenBLAS
174
174
patch_source
175
175
echo start building
176
- if [[ -v dynamic_list ] ]; then
176
+ if [ -v dynamic_list ]; then
177
177
CFLAGS=" $CFLAGS -fvisibility=protected -Wno-uninitialized" \
178
178
make BUFFERSIZE=20 DYNAMIC_ARCH=1 \
179
179
USE_OPENMP=0 NUM_THREADS=64 \
You can’t perform that action at this time.
0 commit comments