* Fix CI
This commit is contained in:
Quentin Le Sceller 2020-02-24 22:31:44 -05:00 committed by GitHub
parent b56afda5f9
commit 4f0c5c015f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -3,6 +3,11 @@ steps:
choco install -y llvm choco install -y llvm
displayName: Windows Install LLVM displayName: Windows Install LLVM
condition: eq( variables['Agent.OS'], 'Windows_NT' ) condition: eq( variables['Agent.OS'], 'Windows_NT' )
- script: |
sudo apt-get update -yqq
sudo apt-get install -yqq --no-install-recommends libclang-dev clang
displayName: Linux Install Dependencies
condition: eq( variables['Agent.OS'], 'Linux' )
- script: | - script: |
brew uninstall llvm brew uninstall llvm
displayName: macOS Uninstall LLVM displayName: macOS Uninstall LLVM

View file

@ -46,6 +46,7 @@ jobs:
CI_JOB: release CI_JOB: release
PLATFORM: linux-amd64 PLATFORM: linux-amd64
steps: steps:
- template: '.ci/install.yml'
- template: '.ci/test.yml' - template: '.ci/test.yml'
- template: '.ci/release.yml' - template: '.ci/release.yml'
- job: macos - job: macos