Browse Source

add OSX docker build

pull/3611/head
Martin Kroeker GitHub 4 years ago
parent
commit
aef5da6582
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 2 deletions
  1. +13
    -2
      azure-pipelines.yml

+ 13
- 2
azure-pipelines.yml View File

@@ -137,8 +137,19 @@ jobs:
cmake --build . --config Release cmake --build . --config Release
ctest ctest




- job: OSX_docker
pool:
vmImage: 'macOS-10.15'
steps:
- script: |
echo "FROM python:2.7.16
COPY . /tmp/openblas
RUN apt-get update \
&& apt-get install -y swig gfortran llvm cmake ncurses-dev \
libreadline7 libreadline-dev nano git
RUN cd /tmp/openblas && make FC=gfortran" > Dockerfile
docker build .
- job: OSX_OpenMP - job: OSX_OpenMP
pool: pool:
vmImage: 'macOS-10.15' vmImage: 'macOS-10.15'


Loading…
Cancel
Save