Files
rdkit/azure-pipelines.yml
Greg Landrum 3489b71a43 Fixes #3648 (#3654)
* Fixes #3648

Code now builds without either MAEParser or coordgen integration enabled.

* add CI build with minimal dependencies

* remove doctests from the new CI build

they need the cairo support
2021-01-20 17:50:42 +01:00

117 lines
2.7 KiB
YAML

trigger:
- master
- Release_*
- dev/*
jobs:
- job: Ubuntu_18_04_x64
timeoutInMinutes: 90
pool:
vmImage: ubuntu-18.04
variables:
python: python=3.8
boost_version: 1.71.0
compiler: gxx_linux-64
number_of_cores: nproc
python_name: python38
steps:
- template: .azure-pipelines/linux_build.yml
- job: Ubuntu_16_04_x64_py37
timeoutInMinutes: 90
pool:
vmImage: ubuntu-16.04
variables:
compiler: gxx_linux-64=7.2.0
boost_version: 1.67.0
number_of_cores: nproc
python_name: python37
steps:
- template: .azure-pipelines/linux_build_py37.yml
- job: macOS_10_13_x64
timeoutInMinutes: 90
pool:
vmImage: macos-10.14
variables:
compiler: clangxx_osx-64
boost_version: 1.67.0
number_of_cores: sysctl -n hw.ncpu
python_name: python37
target_platform: 10.9
steps:
- template: .azure-pipelines/mac_build.yml
- job: Windows_VS2017_x64
timeoutInMinutes: 90
pool:
vmImage: vs2017-win2016
variables:
compiler: vs2017_win-64
boost_version: 1.67.0
number_of_cores: '%NUMBER_OF_PROCESSORS%'
python_name: python37
steps:
- template: .azure-pipelines/vs_build.yml
- job: Windows_VS2017_x64_dll
timeoutInMinutes: 90
pool:
vmImage: vs2017-win2016
variables:
compiler: vs2017_win-64
boost_version: 1.67.0
number_of_cores: '%NUMBER_OF_PROCESSORS%'
python_name: python37
steps:
- template: .azure-pipelines/vs_build_dll.yml
- job: Ubuntu_16_04_x64_java
timeoutInMinutes: 90
pool:
vmImage: ubuntu-16.04
variables:
compiler: gxx_linux-64=7.2.0
boost_version: 1.67.0
number_of_cores: nproc
python_name: python37
steps:
- template: .azure-pipelines/linux_build_java.yml
- job: macOS_10_13_x64_java
timeoutInMinutes: 90
pool:
vmImage: macos-10.14
variables:
compiler: clangxx_osx-64
boost_version: 1.67.0
number_of_cores: sysctl -n hw.ncpu
python_name: python37
target_platform: 10.9
steps:
- template: .azure-pipelines/mac_build_java.yml
- job: Ubuntu_18_04_x64_cartridge
timeoutInMinutes: 90
pool:
vmImage: ubuntu-18.04
variables:
boost_version: 1.69.0
number_of_cores: nproc
steps:
- template: .azure-pipelines/linux_build_cartridge.yml
- job: Ubuntu_18_04_x64_fuzzer
timeoutInMinutes: 90
pool:
vmImage: ubuntu-18.04
variables:
boost_version: 1.67.0
number_of_cores: nproc
steps:
- template: .azure-pipelines/linux_build_fuzzer.yml
- job: Ubuntu_18_04_x64_limitexternaldependencies
timeoutInMinutes: 90
pool:
vmImage: ubuntu-18.04
variables:
python: python=3.8
boost_version: 1.71.0
compiler: gxx_linux-64
number_of_cores: nproc
python_name: python38
steps:
- template: .azure-pipelines/linux_build_limitexternal.yml