Skip to content

Commit a0aaf30

Browse files
committed
Install gfortran and add a clang job
1 parent 15f925f commit a0aaf30

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

.drone.yml

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
kind: pipeline
3-
name: arm64_gcc
3+
name: arm64_gcc_make
44

55
platform:
66
os: linux
@@ -13,7 +13,28 @@ steps:
1313
CC: gcc
1414
COMMON_FLAGS: 'DYNAMIC_ARCH=1 TARGET=ARMV8 NUM_THREADS=32'
1515
commands:
16-
- yum -y install make gcc perl
16+
- yum -y install make gcc gfortran perl
17+
- make QUIET_MAKE=1 $COMMON_FLAGS
18+
- make -C test $COMMON_FLAGS
19+
- make -C ctest $COMMON_FLAGS
20+
- make -C utest $COMMON_FLAGS"
21+
22+
---
23+
kind: pipeline
24+
name: arm64_clang_make
25+
26+
platform:
27+
os: linux
28+
arch: arm64
29+
30+
steps:
31+
- name: Build and Test
32+
image: centos:7
33+
environment:
34+
CC: clang
35+
COMMON_FLAGS: 'DYNAMIC_ARCH=1 TARGET=ARMV8 NUM_THREADS=32'
36+
commands:
37+
- yum -y install make gcc gfortran perl clang
1738
- make QUIET_MAKE=1 $COMMON_FLAGS
1839
- make -C test $COMMON_FLAGS
1940
- make -C ctest $COMMON_FLAGS

0 commit comments

Comments
 (0)