Switch to ubuntu and parallel jobs

This commit is contained in:
Isuru Fernando 2019-05-12 13:53:58 -05:00
parent 9184590c33
commit dc110e179d
1 changed files with 6 additions and 6 deletions

View File

@ -8,12 +8,12 @@ platform:
steps:
- name: Build and Test
image: centos:7
image: ubuntu:18.04
environment:
CC: gcc
COMMON_FLAGS: 'DYNAMIC_ARCH=1 TARGET=ARMV8 NUM_THREADS=32'
COMMON_FLAGS: 'DYNAMIC_ARCH=1 TARGET=ARMV8 NUM_THREADS=32 -j'
commands:
- yum -y install make gcc gcc-gfortran perl
- apt install make gcc gfortran perl clang
- make QUIET_MAKE=1 $COMMON_FLAGS
- make -C test $COMMON_FLAGS
- make -C ctest $COMMON_FLAGS
@ -29,12 +29,12 @@ platform:
steps:
- name: Build and Test
image: centos:7
image: ubuntu:18.04
environment:
CC: clang
COMMON_FLAGS: 'DYNAMIC_ARCH=1 TARGET=ARMV8 NUM_THREADS=32'
COMMON_FLAGS: 'DYNAMIC_ARCH=1 TARGET=ARMV8 NUM_THREADS=32 -j'
commands:
- yum -y install make gcc gcc-gfortran perl clang
- apt install make gcc gfortran perl clang
- make QUIET_MAKE=1 $COMMON_FLAGS
- make -C test $COMMON_FLAGS
- make -C ctest $COMMON_FLAGS