From af8cc72d57354052068d90897648da629ccc47c2 Mon Sep 17 00:00:00 2001 From: Oliver Hahn Date: Thu, 25 Nov 2021 13:28:38 +0000 Subject: [PATCH] bitbucket-pipelines.yml edited online with Bitbucket --- bitbucket-pipelines.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 3fd9414..40b787b 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -4,7 +4,7 @@ # The workflow allows running tests and code linting on the default branch. -image: gcc:10.2 +image: gcc pipelines: default: @@ -15,8 +15,9 @@ pipelines: - uname -a # Print the gcc version. - gcc --version - # Install a CMake 3.0.2 version. - apt-get update -qq + - apt-get install gfortran -qq -y + # Install a CMake 3.0.2 version. - apt-get install cmake -y --force-yes # Print the CMake version. - cmake --version @@ -24,7 +25,7 @@ pipelines: - apt-get install fftw3-dev -y - apt-get install libgsl-dev -y - apt-get install libhdf5-serial-dev -y - - apt-get install gfortran-10 -y + - apt-get install libopenmpi-dev -y - mkdir build - cd build