We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3612d9a commit 0b9e4d1Copy full SHA for 0b9e4d1
.drone.yml
@@ -190,3 +190,25 @@ steps:
190
- make -C ctest $COMMON_FLAGS
191
- make -C utest $COMMON_FLAGS
192
- make -C cpp_thread_test dgemm_tester
193
+---
194
+kind: pipeline
195
+name: arm64_gcc10
196
+
197
+platform:
198
+ os: linux
199
+ arch: arm64
200
201
+steps:
202
+- name: Build and Test
203
+ image: ubuntu:20.04
204
+ environment:
205
+ CC: gcc-10
206
+ COMMON_FLAGS: 'TARGET=ARMV8 DYNAMIC_ARCH=1'
207
+ commands:
208
+ - echo "MAKE_FLAGS:= $COMMON_FLAGS"
209
+ - apt-get update -y
210
+ - apt-get install -y make $CC gfortran-10 perl python g++
211
+ - $CC --version
212
+ - make QUIET_MAKE=1 $COMMON_FLAGS
213
+ - make -C test $COMMON_FLAGS
214
0 commit comments