From 2d8bdd457e650c58dbe45eb969d6280758927209 Mon Sep 17 00:00:00 2001 From: Jeb Rosen Date: Sun, 1 Dec 2019 12:11:18 -0800 Subject: [PATCH] Fix CI on MacOS. Homebrew/homebrew-core#46566 merged 'mysql-connector-c' into 'mysql-client', which does not install into the same paths. --- .github/azure-pipelines-template.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/azure-pipelines-template.yml b/.github/azure-pipelines-template.yml index 36ef7192..c0b8d41c 100644 --- a/.github/azure-pipelines-template.yml +++ b/.github/azure-pipelines-template.yml @@ -21,7 +21,9 @@ jobs: # maxOS native dependency installation - ${{ if eq(parameters.name, 'macOS') }}: - - script: brew install mysql-connector-c libpq sqlite coreutils + - script: | + brew install mysql-client libpq sqlite coreutils + echo "##vso[task.setvariable variable=PATH]$PATH:/usr/local/opt/mysql-client/bin" displayName: 'Install Native Dependencies' # Linux native dependency installation