mirror of
https://github.com/cosmo-sims/MUSIC.git
synced 2024-09-11 07:53:43 +02:00
Delete bitbucket-pipelines.yml
This commit is contained in:
parent
99f96417d4
commit
2402869961
1 changed files with 0 additions and 33 deletions
|
@ -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
|
Loading…
Reference in a new issue