Install gfortran and add a clang job

This commit is contained in:
Isuru Fernando 2019-05-12 13:47:49 -05:00
parent 15f925fe9a
commit a0aaf308ed
1 changed files with 23 additions and 2 deletions

View File

@ -1,6 +1,6 @@
---
kind: pipeline
name: arm64_gcc
name: arm64_gcc_make
platform:
os: linux
@ -13,7 +13,28 @@ steps:
CC: gcc
COMMON_FLAGS: 'DYNAMIC_ARCH=1 TARGET=ARMV8 NUM_THREADS=32'
commands:
- yum -y install make gcc perl
- yum -y install make gcc gfortran perl
- make QUIET_MAKE=1 $COMMON_FLAGS
- make -C test $COMMON_FLAGS
- make -C ctest $COMMON_FLAGS
- make -C utest $COMMON_FLAGS"
---
kind: pipeline
name: arm64_clang_make
platform:
os: linux
arch: arm64
steps:
- name: Build and Test
image: centos:7
environment:
CC: clang
COMMON_FLAGS: 'DYNAMIC_ARCH=1 TARGET=ARMV8 NUM_THREADS=32'
commands:
- yum -y install make gcc gfortran perl clang
- make QUIET_MAKE=1 $COMMON_FLAGS
- make -C test $COMMON_FLAGS
- make -C ctest $COMMON_FLAGS