From b40837bcc1e410074391a92b19d6cdc7cc3575fb Mon Sep 17 00:00:00 2001 From: GD Date: Mon, 26 Apr 2021 18:24:48 +0200 Subject: [PATCH 1/2] instruction to install software requirements (except R pkgs) to be able to run RKeOps on MacOs --- rkeops/ci/prepare_macos_ci.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 rkeops/ci/prepare_macos_ci.sh diff --git a/rkeops/ci/prepare_macos_ci.sh b/rkeops/ci/prepare_macos_ci.sh new file mode 100644 index 000000000..87d960a87 --- /dev/null +++ b/rkeops/ci/prepare_macos_ci.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +brew install r +brew install libgit2 +brew install pandoc +brew install qpdf From 2518846aa2e99ebec67bb73dbf4ec2d2a3f47a2e Mon Sep 17 00:00:00 2001 From: GD Date: Mon, 26 Apr 2021 18:25:31 +0200 Subject: [PATCH 2/2] re-enable CI for RKeOps on MacOS (for new CI MacOS VM) --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 593960aa5..c025c5935 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -119,7 +119,7 @@ pipeline { echo 'Testing..' sh 'git submodule update --init' sh ''' - # bash rkeops/ci/run_ci.sh + bash rkeops/ci/run_ci.sh ''' } }