mirror of https://gitlab.com/QEF/q-e.git
65 lines
1.4 KiB
YAML
65 lines
1.4 KiB
YAML
build:pw:
|
|
tags: [docker]
|
|
image: espressofoundation/ubuntu:latest
|
|
script:
|
|
- ./configure
|
|
- make pw
|
|
# - export OMP_NUM_THREADS=1
|
|
# - cd test-suite
|
|
# - mkdir /tmp/save
|
|
# - make run-tests-pw-serial
|
|
# - rm -r /tmp/save
|
|
|
|
build:cp:
|
|
tags: [docker]
|
|
image: espressofoundation/ubuntu:latest
|
|
script:
|
|
- ./configure
|
|
- make cp
|
|
# - export OMP_NUM_THREADS=1
|
|
# - cd test-suite
|
|
# - mkdir /tmp/save
|
|
# - make run-tests-cp-serial
|
|
# - rm -r /tmp/save
|
|
|
|
build:ph:
|
|
tags: [docker]
|
|
image: espressofoundation/ubuntu:latest
|
|
script:
|
|
- ./configure
|
|
- make ph
|
|
# - export OMP_NUM_THREADS=1
|
|
# - cd test-suite
|
|
# - mkdir /tmp/save
|
|
# - make run-tests-ph-serial
|
|
# - rm -r /tmp/save
|
|
|
|
#build:centos:
|
|
# image: centos:latest
|
|
# script:
|
|
# - yum -y groupinstall "Development Tools"
|
|
# - yum -y install wget which python27
|
|
# - ./configure
|
|
# - make all
|
|
# - export OMP_NUM_THREADS=1
|
|
# - cd test-suite
|
|
# - mkdir /tmp/save
|
|
# - make run-tests-serial
|
|
# - rm -r /tmp/save
|
|
|
|
|
|
#### BUILDS ON GALILEO ####
|
|
|
|
#build:intel:
|
|
# tags: [galileo]
|
|
# script:
|
|
# - module load intel/pe-xe-2017--binary intelmpi/2017--binary mkl/2017--binary
|
|
# - ./configure --enable-openmp
|
|
# - make pw cp
|
|
# - export OMP_NUM_THREADS=2
|
|
# - cd test-suite
|
|
# - mkdir -p /tmp/save
|
|
# - make run-tests-pw-parallel
|
|
# - make run-tests-cp-parallel
|
|
# - rm -r /tmp/save
|