]> git.proxmox.com Git - ceph.git/blame - ceph/src/isa-l/.drone.yml
Import ceph 15.2.8
[ceph.git] / ceph / src / isa-l / .drone.yml
CommitLineData
f91f0fd5
TL
1kind: pipeline
2name: arm64-linux-gcc-5.4
3
4platform:
5 os: linux
6 arch: arm64
7
8steps:
9- name: arm64-linux-gcc-5.4
10 image: ubuntu:xenial
11 environment:
12 C_COMPILER: gcc
13 commands:
14 - if [ -n "$C_COMPILER" ]; then export CC="$C_COMPILER"; fi
15 - if [ -n "$AS_ASSEMBL" ]; then export AS="$AS_ASSEMBL"; fi
16 - apt-get -qq update
17 - apt-get install -qq -y build-essential git indent libtool libz-dev yasm autoconf
18 - if [ -n "$CC" ]; then $CC --version; fi
19 - if [ -n "$AS" ]; then $AS --version; fi
20 - ./tools/test_autorun.sh "$TEST_TYPE"
21
22---
23kind: pipeline
24name: arm64-linux-gcc-4.7
25
26platform:
27 os: linux
28 arch: arm64
29
30steps:
31- name: arm64-linux-gcc-4.7
32 image: ubuntu:xenial
33 environment:
34 C_COMPILER: gcc-4.7
35 commands:
36 - if [ -n "$C_COMPILER" ]; then export CC="$C_COMPILER"; fi
37 - if [ -n "$AS_ASSEMBL" ]; then export AS="$AS_ASSEMBL"; fi
38 - apt-get -qq update
39 - apt-get install -qq -y build-essential git indent libtool libz-dev software-properties-common yasm autoconf
40 - add-apt-repository -y ppa:ubuntu-toolchain-r/test
41 - apt-get -qq update
42 - apt-get install -qq -y g++-4.7
43 - if [ -n "$CC" ]; then $CC --version; fi
44 - if [ -n "$AS" ]; then $AS --version; fi
45 - ./tools/test_autorun.sh "$TEST_TYPE"
46
47---
48kind: pipeline
49name: arm64-linux-gcc-6
50
51platform:
52 os: linux
53 arch: arm64
54
55steps:
56- name: arm64-linux-gcc-6
57 image: debian:9
58 environment:
59 C_COMPILER: gcc
60 commands:
61 - if [ -n "$C_COMPILER" ]; then export CC="$C_COMPILER"; fi
62 - if [ -n "$AS_ASSEMBL" ]; then export AS="$AS_ASSEMBL"; fi
63 - apt-get -q update
64 - apt-get install -y build-essential git indent libtool libz-dev software-properties-common yasm autoconf
65 - if [ -n "$CC" ]; then $CC --version; fi
66 - if [ -n "$AS" ]; then $AS --version; fi
67 - ./tools/test_autorun.sh "$TEST_TYPE"
68
69---
70kind: pipeline
71name: arm64-linux-extended-tests
72
73platform:
74 os: linux
75 arch: arm64
76
77steps:
78- name: arm64-linux-extended-tests
79 image: ubuntu:xenial
80 environment:
81 TEST_TYPE: ext
82 commands:
83 - if [ -n "$C_COMPILER" ]; then export CC="$C_COMPILER"; fi
84 - if [ -n "$AS_ASSEMBL" ]; then export AS="$AS_ASSEMBL"; fi
85 - apt-get -qq update
86 - apt-get install -qq -y build-essential git indent libtool libz-dev software-properties-common yasm autoconf
87 - if [ -n "$CC" ]; then $CC --version; fi
88 - if [ -n "$AS" ]; then $AS --version; fi
89 - ./tools/test_autorun.sh "$TEST_TYPE"