File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -59,16 +59,15 @@ steps:
59
59
image : ubuntu:18.04
60
60
environment :
61
61
CC : gcc
62
- CXX : g++
63
62
CMAKE_FLAGS : ' -DDYNAMIC_ARCH=1 -DTARGET=ARMV8 -DNUM_THREADS=32 -DNOFORTRAN=ON -DBUILD_WITHOUT_LAPACK=ON'
64
63
commands :
65
64
- echo "CMAKE_FLAGS:= $CMAKE_FLAGS"
66
65
- apt-get update -y
67
- - apt-get install -y make $CC $CXX g++ perl cmake
66
+ - apt-get install -y make $CC g++ perl cmake
68
67
- $CC --version
69
68
- mkdir build && cd build
70
69
- cmake $CMAKE_FLAGS ..
71
- - cmake --build .
70
+ - make -j
72
71
- ctest
73
72
74
73
---
@@ -84,14 +83,13 @@ steps:
84
83
image : ubuntu:18.04
85
84
environment :
86
85
CC : clang
87
- CXX : clang++
88
86
CMAKE_FLAGS : ' -DDYNAMIC_ARCH=1 -DTARGET=ARMV8 -DNUM_THREADS=32 -DNOFORTRAN=ON -DBUILD_WITHOUT_LAPACK=ON'
89
87
commands :
90
88
- echo "CMAKE_FLAGS:= $CMAKE_FLAGS"
91
89
- apt-get update -y
92
- - apt-get install -y make $CC $CXX perl cmake
90
+ - apt-get install -y make $CC g++ perl cmake
93
91
- $CC --version
94
92
- mkdir build && cd build
95
93
- cmake $CMAKE_FLAGS ..
96
- - cmake --build .
94
+ - make -j
97
95
- ctest
You can’t perform that action at this time.
0 commit comments