From edf881b19c8f697fa3de28350f285b1ea7387722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Breitbart?= Date: Tue, 23 Jul 2019 17:02:23 +0200 Subject: [PATCH] macOS integration tests --- azure-pipelines.yml | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e8b23d34..94906d33 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -62,7 +62,7 @@ jobs: yarn lint displayName: 'Lint' -- job: IntegrationTests +- job: Linux_IntegrationTests pool: vmImage: 'ubuntu-16.04' steps: @@ -81,7 +81,24 @@ jobs: yarn start & sleep 10 yarn test-api --headless - displayName: 'Integration tests' + displayName: 'Linux Integration tests' + +- job: macOS_IntegrationTests + pool: + vmImage: 'xcode9-macos10.13' + steps: + - task: NodeTool@0 + inputs: + versionSpec: '8.x' + displayName: 'Install Node.js' + - script: | + yarn + displayName: 'Install dependencies and build' + - script: | + yarn start & + sleep 10 + yarn test-api --headless + displayName: 'MacOS Integration tests' - job: Release dependsOn: