Merge branch 'master' into reconnection

This commit is contained in:
Grzegorz Kowal 2021-11-11 16:02:11 -03:00
commit 710c3d0086
2 changed files with 2 additions and 38 deletions

View File

@ -16,10 +16,8 @@ trigger:
steps:
- name: build with make
image: debian
image: ubuntu-hpc:1
commands:
- apt -q update
- apt -q -y install gawk make gfortran libhdf5-dev libopenmpi-dev
- cd ./build
- cp -al make.default make.config
- cp -al ./hosts/default ./hosts/$HOSTNAME
@ -33,10 +31,8 @@ steps:
- make MPI=Y NDIMS=3 -j 4
- name: build with cmake
image: debian
image: ubuntu-hpc:1
commands:
- apt -q update
- apt -q -y install cmake gfortran libhdf5-dev libopenmpi-dev libzstd-dev liblz4-dev liblzma-dev pkg-config
- mkdir ./build-cmake/
- cd ./build-cmake/
- cmake -LA ..

View File

@ -1,32 +0,0 @@
image: debian
pipelines:
default:
- step:
name: Build
script:
- apt -q update
- apt -q -y install gawk make gfortran libhdf5-dev libopenmpi-dev
- cd ./build
- cp -al make.default make.config
- cp -al ./hosts/default ./hosts/$HOSTNAME
- export HDF5DIR=/usr/lib/x86_64-linux-gnu/hdf5/serial
- make MPI=N NDIMS=2
- make clean
- make MPI=N NDIMS=3
- make clean
- make MPI=Y NDIMS=2
- make clean
- make MPI=Y NDIMS=3
- step:
name: Build with CMake
script:
- apt -q update
- apt -q -y install cmake gfortran libhdf5-dev libopenmpi-dev libzstd-dev liblz4-dev liblzma-dev pkg-config
- mkdir ./build-cmake/
- cd ./build-cmake/
- cmake -LA ..
- make
- cmake -LA -DENABLE_3D=Y ..
- make