mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Fix some yaml schema issues
This commit is contained in:
parent
f5b9487c8b
commit
c9ad2c2df0
2 changed files with 4 additions and 5 deletions
|
@ -1,12 +1,9 @@
|
|||
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:
|
||||
|
|
Loading…
Reference in a new issue