From 6d77bc64b35382a25d1128bd9169db8433a17686 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Wed, 8 May 2019 19:49:35 +0200 Subject: [PATCH 1/3] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0b1ba16fd8..1e2f3e225f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,12 +14,8 @@ steps: displayName: 'Run a one-line script' #- script: | -# docker run --rm --privileged multiarch/qemu-user-static:register --reset -# ls /proc/sys/fs/binfmt_misc/ -# condition: not(startsWith(variables['CONFIG'], 'linux_64')) -# displayName: 'Configure binfmt_misc' + docker run --rm --privileged multiarch/qemu-user-static:register --reset -- script: | echo "FROM openblas/alpine:arm32 COPY . /tmp/openblas RUN mkdir /tmp/openblas/build && \ From ca772a6426834c2578bb49401d324b72a236d69b Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Wed, 8 May 2019 19:52:12 +0200 Subject: [PATCH 2/3] Update azure-pipelines.yml --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1e2f3e225f..ccfb0f71f9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -13,9 +13,8 @@ steps: - script: echo Hello, world! displayName: 'Run a one-line script' -#- script: | +- script: | docker run --rm --privileged multiarch/qemu-user-static:register --reset - echo "FROM openblas/alpine:arm32 COPY . /tmp/openblas RUN mkdir /tmp/openblas/build && \ From 0ba04321991bf12156d8149621335575f4934abc Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Wed, 8 May 2019 21:57:14 +0200 Subject: [PATCH 3/3] Update azure-pipelines.yml --- azure-pipelines.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ccfb0f71f9..cef2ef9731 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,8 +19,9 @@ steps: COPY . /tmp/openblas RUN mkdir /tmp/openblas/build && \ cd /tmp/openblas/build && \ - CC=gcc cmake -D DYNAMIC_ARCH=OFF \ - -D TARGET=ARMV6 \ + CC=gcc cmake -D DYNAMIC_ARCH=OFF \ + -D TARGET=ARMV6 \ + -D NOFORTRAN=ON \ -D BUILD_SHARED_LIBS=ON \ -D BUILD_WITHOUT_LAPACK=ON \ -D BUILD_WITHOUT_CBLAS=ON \