summaryrefslogtreecommitdiffstats
path: root/src/isa-l/.drone.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/isa-l/.drone.yml
parentInitial commit. (diff)
downloadceph-upstream/16.2.11+ds.tar.xz
ceph-upstream/16.2.11+ds.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--src/isa-l/.drone.yml89
1 files changed, 89 insertions, 0 deletions
diff --git a/src/isa-l/.drone.yml b/src/isa-l/.drone.yml
new file mode 100644
index 000000000..4a30e9044
--- /dev/null
+++ b/src/isa-l/.drone.yml
@@ -0,0 +1,89 @@
+kind: pipeline
+name: arm64-linux-gcc-5.4
+
+platform:
+ os: linux
+ arch: arm64
+
+steps:
+- name: arm64-linux-gcc-5.4
+ image: ubuntu:xenial
+ environment:
+ C_COMPILER: gcc
+ commands:
+ - if [ -n "$C_COMPILER" ]; then export CC="$C_COMPILER"; fi
+ - if [ -n "$AS_ASSEMBL" ]; then export AS="$AS_ASSEMBL"; fi
+ - apt-get -qq update
+ - apt-get install -qq -y build-essential git indent libtool libz-dev yasm autoconf
+ - if [ -n "$CC" ]; then $CC --version; fi
+ - if [ -n "$AS" ]; then $AS --version; fi
+ - ./tools/test_autorun.sh "$TEST_TYPE"
+
+---
+kind: pipeline
+name: arm64-linux-gcc-4.7
+
+platform:
+ os: linux
+ arch: arm64
+
+steps:
+- name: arm64-linux-gcc-4.7
+ image: ubuntu:xenial
+ environment:
+ C_COMPILER: gcc-4.7
+ commands:
+ - if [ -n "$C_COMPILER" ]; then export CC="$C_COMPILER"; fi
+ - if [ -n "$AS_ASSEMBL" ]; then export AS="$AS_ASSEMBL"; fi
+ - apt-get -qq update
+ - apt-get install -qq -y build-essential git indent libtool libz-dev software-properties-common yasm autoconf
+ - add-apt-repository -y ppa:ubuntu-toolchain-r/test
+ - apt-get -qq update
+ - apt-get install -qq -y g++-4.7
+ - if [ -n "$CC" ]; then $CC --version; fi
+ - if [ -n "$AS" ]; then $AS --version; fi
+ - ./tools/test_autorun.sh "$TEST_TYPE"
+
+---
+kind: pipeline
+name: arm64-linux-gcc-6
+
+platform:
+ os: linux
+ arch: arm64
+
+steps:
+- name: arm64-linux-gcc-6
+ image: debian:9
+ environment:
+ C_COMPILER: gcc
+ commands:
+ - if [ -n "$C_COMPILER" ]; then export CC="$C_COMPILER"; fi
+ - if [ -n "$AS_ASSEMBL" ]; then export AS="$AS_ASSEMBL"; fi
+ - apt-get -q update
+ - apt-get install -y build-essential git indent libtool libz-dev software-properties-common yasm autoconf
+ - if [ -n "$CC" ]; then $CC --version; fi
+ - if [ -n "$AS" ]; then $AS --version; fi
+ - ./tools/test_autorun.sh "$TEST_TYPE"
+
+---
+kind: pipeline
+name: arm64-linux-extended-tests
+
+platform:
+ os: linux
+ arch: arm64
+
+steps:
+- name: arm64-linux-extended-tests
+ image: ubuntu:xenial
+ environment:
+ TEST_TYPE: ext
+ commands:
+ - if [ -n "$C_COMPILER" ]; then export CC="$C_COMPILER"; fi
+ - if [ -n "$AS_ASSEMBL" ]; then export AS="$AS_ASSEMBL"; fi
+ - apt-get -qq update
+ - apt-get install -qq -y build-essential git indent libtool libz-dev software-properties-common yasm autoconf
+ - if [ -n "$CC" ]; then $CC --version; fi
+ - if [ -n "$AS" ]; then $AS --version; fi
+ - ./tools/test_autorun.sh "$TEST_TYPE"