From ff4ce78db087b57086a30a18b7d03557fb55f494 Mon Sep 17 00:00:00 2001 From: junglebus <22320807+junglebus@users.noreply.github.com> Date: Sun, 22 Mar 2020 16:42:34 +1100 Subject: [PATCH] Pipeline: macOS integration tests (#7801) --- azure-pipelines.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3f10e6c4c..1de8db8f3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -371,11 +371,10 @@ stages: buildDescription: Windows imageName: windows-latest artifactName: Jackett.Binaries.Windows.zip - # Enable once ChromeDriver is deployed to macOS image https://github.com/actions/virtual-environments/issues/7 - # macOS: - # buildDescription: macOS - # imageName: macOS-latest - # artifactName: Jackett.Binaries.macOS.tar.gz + macOS: + buildDescription: macOS + imageName: macOS-latest + artifactName: Jackett.Binaries.macOS.tar.gz LinuxAmdx64: buildDescription: Linux AMD x64 imageName: ubuntu-latest @@ -412,7 +411,7 @@ stages: cd Jackett if [[ "$(artifactName)" == *"Mono"* ]]; then mono --version; fi if [[ "$(artifactName)" == *"Mono"* ]]; then sudo ./install_service_systemd_mono.sh; fi - if [[ "$(artifactName)" == *"macOS"* ]]; then sudo ./install_service_macos; fi + if [[ "$(artifactName)" == *"macOS"* ]]; then ./install_service_macos; fi if [[ "$(artifactName)" == *"LinuxAMDx64"* ]]; then sudo ./install_service_systemd.sh; fi - task: UseDotNet@2