Browse Source

Install gfortran and add a clang job

tags/v0.3.7
Isuru Fernando 7 years ago
parent
commit
a0aaf308ed
1 changed files with 23 additions and 2 deletions
  1. +23
    -2
      .drone.yml

+ 23
- 2
.drone.yml 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


Loading…
Cancel
Save