From 7d5ce925e5b4bbccb3be192dbaf8bc4bd3b02855 Mon Sep 17 00:00:00 2001 From: Quentin Le Sceller Date: Mon, 24 Feb 2020 22:31:44 -0500 Subject: [PATCH] Fix CI (#345) * Fix CI --- .ci/install.yml | 5 +++++ azure-pipelines.yml | 1 + 2 files changed, 6 insertions(+) diff --git a/.ci/install.yml b/.ci/install.yml index 680851aa0..7a27e37c6 100644 --- a/.ci/install.yml +++ b/.ci/install.yml @@ -3,6 +3,11 @@ steps: choco install -y llvm displayName: Windows Install LLVM 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: | brew uninstall llvm displayName: macOS Uninstall LLVM diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b23106125..71c6f9e72 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -46,6 +46,7 @@ jobs: CI_JOB: release PLATFORM: linux-amd64 steps: + - template: '.ci/install.yml' - template: '.ci/test.yml' - template: '.ci/release.yml' - job: macos