From cd925329092fafdb4cf5c80fc7a16266ba565091 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 51a7c9ee..005e8f8e 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