From 24028699618d01b44c4bd15c67a5254ddde24a93 Mon Sep 17 00:00:00 2001 From: Oliver Hahn Date: Sat, 20 Apr 2024 15:46:07 +0200 Subject: [PATCH] Delete bitbucket-pipelines.yml --- bitbucket-pipelines.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 bitbucket-pipelines.yml diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml deleted file mode 100644 index 96a4a94..0000000 --- a/bitbucket-pipelines.yml +++ /dev/null @@ -1,33 +0,0 @@ -# Template C++ Application - -# This template allows you to validate your C++ application. -# The workflow allows running tests and code linting on the default branch. - - -image: debian:latest - -pipelines: - default: - - parallel: - - step: - script: - # Print the Linux version. - - uname -a - # Print the gcc version. - - apt-get update -qq - - apt-get install gcc g++ gfortran -qq -y - - gcc --version - # Install a CMake 3.0.2 version. - - apt-get install git cmake pkg-config cmake-data -y --force-yes - # Print the CMake version. - - cmake --version - # Install the necessary libraries - - apt-get install libfftw3-dev -y - - apt-get install libgsl-dev -y - - apt-get install libhdf5-serial-dev -y - - mkdir build - - cd build - # Call the CMake. - - cmake .. - # Build the project. - - make \ No newline at end of file