Skip to content
Snippets Groups Projects
Verified Commit c9ad2c2d authored by Joe Donofry's avatar Joe Donofry
Browse files

Fix some yaml schema issues

parent f5b9487c
No related branches found
No related tags found
No related merge requests found
parameters:
osName: 'linux'
steps:
- bash: |
./.ci/install.sh
export PATH=/usr/local/bin:${PATH}
- bash: |
export TRAVIS_OS_NAME=${{ osName }}
export CXX=${CXX_COMPILER}
export CC=${C_COMPILER}
# Use TRAVIS_TAG if defined, or the short commit SHA otherwise
......
......@@ -17,7 +17,6 @@ stages:
- job: Linux
pool:
vmImage: 'ubuntu-16.04'
variables:
CXX_COMPILER: 'clang++-5.0'
C_COMPILER: 'clang-5.0'
......@@ -26,6 +25,7 @@ stages:
USE_BUNDLED_BOOST: '1'
USE_BUNDLED_CMARK: '1'
USE_BUNDLED_JSON: '1'
TRAVIS_OS_NAME: 'linux'
steps:
- template: .ci/azure-build.yml
parameters:
......@@ -39,6 +39,7 @@ stages:
USE_BUNDLED_BOOST: '0'
USE_BUNDLED_CMARK: '0'
USE_BUNDLED_JSON: '0'
TRAVIS_OS_NAME: 'osx'
steps:
- template: .ci/azure-build.yml
parameters:
......@@ -47,7 +48,8 @@ stages:
- job: Windows
pool:
vmImage: 'vs2017-win2016'
variables:
TRAVIS_OS_NAME: 'windows'
steps:
- template: .ci/azure-build.yml
parameters:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment