parallel build

This commit is contained in:
Isuru Fernando 2019-05-12 14:22:36 -05:00
parent 3d94ab660f
commit 7aa6faad5f
1 changed files with 4 additions and 6 deletions

View File

@ -59,16 +59,15 @@ steps:
image: ubuntu:18.04
environment:
CC: gcc
CXX: g++
CMAKE_FLAGS: '-DDYNAMIC_ARCH=1 -DTARGET=ARMV8 -DNUM_THREADS=32 -DNOFORTRAN=ON -DBUILD_WITHOUT_LAPACK=ON'
commands:
- echo "CMAKE_FLAGS:= $CMAKE_FLAGS"
- apt-get update -y
- apt-get install -y make $CC $CXX g++ perl cmake
- apt-get install -y make $CC g++ perl cmake
- $CC --version
- mkdir build && cd build
- cmake $CMAKE_FLAGS ..
- cmake --build .
- make -j
- ctest
---
@ -84,14 +83,13 @@ steps:
image: ubuntu:18.04
environment:
CC: clang
CXX: clang++
CMAKE_FLAGS: '-DDYNAMIC_ARCH=1 -DTARGET=ARMV8 -DNUM_THREADS=32 -DNOFORTRAN=ON -DBUILD_WITHOUT_LAPACK=ON'
commands:
- echo "CMAKE_FLAGS:= $CMAKE_FLAGS"
- apt-get update -y
- apt-get install -y make $CC $CXX perl cmake
- apt-get install -y make $CC g++ perl cmake
- $CC --version
- mkdir build && cd build
- cmake $CMAKE_FLAGS ..
- cmake --build .
- make -j
- ctest