diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 1013514..4648946 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -16,17 +16,14 @@ pipelines: # Print the gcc version. - gcc --version # Install a CMake 3.0.2 version. - #- apt-get update -qq - #- apt-get install cmake -y - # Alternatively you could install a CMake 3.2.2 version through PPA repository. - apt-get update -qq - - apt-get install software-properties-common -y - # Add PPA repository. - #- echo 'deb http://ppa.launchpad.net/george-edison55/cmake-3.x/ubuntu trusty main' | tee -a /etc/apt/sources.list.d/cmake.list - #- apt-get update -qq - apt-get install cmake -y --force-yes # Print the CMake version. - - cmake --version + - cmake --version + # Install the necessary libraries + - apt-get install fftw3-dev + - apt-get install libgsl-dev + - apt-get install libhdf5-dev - mkdir build - cd build # Call the CMake.