From 8ee989dbc1ea6294e2c956f6745143171351a18d Mon Sep 17 00:00:00 2001 From: Alexey Rybalchenko Date: Wed, 23 Jan 2019 15:27:27 +0100 Subject: [PATCH] Add MacOS10.14 test machine to Jenkins --- Jenkinsfile | 5 +++-- Jenkinsfile.nightly | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 61470f04..fdbc6a14 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -66,14 +66,15 @@ pipeline{ steps{ script { def build_jobs = jobMatrix('alfa-ci/build', [ - [os: 'Debian8', arch: 'x86_64', compiler: 'gcc8.1.0', fairsoft: 'fairmq_dev'], + [os: 'Debian8', arch: 'x86_64', compiler: 'gcc8.1.0', fairsoft: 'fairmq_dev'], [os: 'MacOS10.13', arch: 'x86_64', compiler: 'AppleLLVM10.0.0', fairsoft: 'fairmq_dev'], + [os: 'MacOS10.14', arch: 'x86_64', compiler: 'AppleLLVM10.0.0', fairsoft: 'fairmq_dev'], ]) { spec, label -> sh './Dart.sh alfa_ci Dart.cfg' } def profile_jobs = jobMatrix('alfa-ci/codecov', [ - [os: 'Debian8', arch: 'x86_64', compiler: 'gcc8.1.0', fairsoft: 'fairmq_dev'], + [os: 'Debian8', arch: 'x86_64', compiler: 'gcc8.1.0', fairsoft: 'fairmq_dev'], ]) { spec, label -> withCredentials([string(credentialsId: 'fairmq_codecov_token', variable: 'CODECOV_TOKEN')]) { sh './Dart.sh codecov Dart.cfg' diff --git a/Jenkinsfile.nightly b/Jenkinsfile.nightly index 4868c38f..231e3974 100644 --- a/Jenkinsfile.nightly +++ b/Jenkinsfile.nightly @@ -63,8 +63,9 @@ pipeline{ steps{ script { parallel(buildMatrix([ - [os: 'Debian8', arch: 'x86_64', compiler: 'gcc8.1.0', fairsoft: 'fairmq_dev'], - [os: 'MacOS10.13', arch: 'x86_64', compiler: 'AppleLLVM10.0.0', fairsoft: 'fairmq_dev'], + [os: 'Debian8', arch: 'x86_64', compiler: 'gcc8.1.0', fairsoft: 'fairmq_dev'], + [os: 'MacOS10.13', arch: 'x86_64', compiler: 'AppleLLVM10.0.0', fairsoft: 'fairmq_dev'], + [os: 'MacOS10.14', arch: 'x86_64', compiler: 'AppleLLVM10.0.0', fairsoft: 'fairmq_dev'], ]) { spec, label -> sh './Dart.sh Nightly Dart.cfg' sh './Dart.sh Profile Dart.cfg'