diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b891c95d1..2de99d20b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -33,30 +33,6 @@ jobs: make -C utest $COMMON_FLAGS $BTYPE" > Dockerfile docker build . displayName: Run manylinux1 docker build -- job: Intel_SDE_skx - pool: - vmImage: 'ubuntu-latest' - steps: - - script: | - # at the time of writing the available Azure Ubuntu vm image - # does not support AVX512VL, so use more recent LTS version - echo "FROM ubuntu:bionic - COPY . /tmp/openblas - RUN apt-get -y update && apt-get -y install \\ - cmake \\ - gfortran \\ - make \\ - wget - RUN mkdir /tmp/SDE && cd /tmp/SDE && \\ - mkdir sde-external-8.35.0-2019-03-11-lin && \\ - wget --quiet -O sde-external-8.35.0-2019-03-11-lin.tar.bz2 https://www.dropbox.com/s/fopsnzj67572sj5/sde-external-8.35.0-2019-03-11-lin.tar.bz2?dl=0 && \\ - tar -xjvf sde-external-8.35.0-2019-03-11-lin.tar.bz2 -C /tmp/SDE/sde-external-8.35.0-2019-03-11-lin --strip-components=1 - RUN cd /tmp/openblas && CC=gcc make QUIET_MAKE=1 DYNAMIC_ARCH=1 NUM_THREADS=32 BINARY=64 - CMD cd /tmp/openblas && echo 0 > /proc/sys/kernel/yama/ptrace_scope && CC=gcc OPENBLAS_VERBOSE=2 /tmp/SDE/sde-external-8.35.0-2019-03-11-lin/sde64 -cpuid_in /tmp/SDE/sde-external-8.35.0-2019-03-11-lin/misc/cpuid/skx/cpuid.def -- make -C utest DYNAMIC_ARCH=1 NUM_THREADS=32 BINARY=64" > Dockerfile - docker build -t intel_sde . - # we need a privileged docker run for sde process attachment - docker run --privileged intel_sde - displayName: 'Run AVX512 SkylakeX docker build / test' - job: Windows_cl pool: @@ -81,7 +57,7 @@ jobs: vmImage: 'windows-latest' steps: - script: | - mingw32-make CC=gcc FC=gfortran # DYNAMIC_ARCH=1 DYNAMIC_LIST="SANDYBRIDGE" + mingw32-make CC=gcc FC=gfortran cd ctest cp ../libopenblas.dll . dir @@ -92,210 +68,3 @@ jobs: xccblat3 test_install.c - alpine echo "#include " >>test_install.c - alpine echo "int main(){" >> test_install.c - alpine echo "cpu_set_t* cpu_set = NULL;}" >>test_install.c - alpine gcc -Imytestdir/include test_install.c -Lmytestdir/lib -lopenblas -lpthread -lgfortran -o test_install -