From 8acb6fe3a86c093f993f97d8be14a98c80d10a2c Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sun, 11 Jul 2021 11:29:52 +0200 Subject: [PATCH] Update azure-pipelines.yml --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a9bb43da4..6b4d6fad0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -157,10 +157,10 @@ jobs: alpine() { /alpine/enter-chroot -u "$USER" "$@"; } sudo sh alpine-chroot-install -p 'build-base gfortran perl linux-headers sudo' alpine make DYNAMIC_ARCH=1 BINARY=64 - alpine sh -c "echo ''|sudo -S make DYNAMIC_ARCH=1 BINARY=64 install" - alpine ls -l /opt/OpenBLAS/include + alpine make DYNAMIC_ARCH=1 BINARY=64 PREFIX=mytestdir install" + alpine ls -l mytestdir/include alpine echo "// tests that inclusion of openblas_config.h works with musl" >test_install.c alpine echo "#include " >>test_install.c alpine echo "cpu_set_t* cpu_set = NULL;" >>test_install.c - alpine gcc -I/opt/OpenBLAS/include test_install.c -lopenblas -lpthread -lgfortran -o test_install + alpine gcc -Imytestdir/include test_install.c -lopenblas -lpthread -lgfortran -o test_install