-
Notifications
You must be signed in to change notification settings - Fork 185
156 lines (137 loc) · 4.06 KB
/
full-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
name: "Full CI"
on:
push:
branches:
- dev
- release-*
- refs/tags/*
##############################################################################
# #
# These sections must be synchronized with 'paths' in full-ci-dummy.yml #
# #
##############################################################################
pull_request:
branches:
- '*' # must quote since "*" is a YAML reserved character; we want a string
paths-ignore:
- '.github/workflows/quarto-render.yml'
- '_quarto.yml'
- 'quarto-materials/*'
- '**/.md'
- 'tiledb/doxygen/source/*'
- 'tiledb/sm/c_api/tiledb_version.h'
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
## NOTE: the job ids below must be unique!
jobs:
ci1:
uses: ./.github/workflows/ci-linux_mac.yml
with:
ci_backend: AZURE
matrix_image: ubuntu-22.04
bootstrap_args: '--enable-azure --enable-release-symbols'
ci2:
uses: ./.github/workflows/ci-linux_mac.yml
with:
ci_backend: GCS
matrix_image: ubuntu-20.04
matrix_compiler_cc: 'gcc-10'
matrix_compiler_cxx: 'g++-10'
timeout: 120
bootstrap_args: '--enable-gcs --enable-release-symbols'
ci3:
uses: ./.github/workflows/ci-linux_mac.yml
with:
ci_option: SERIALIZATION
matrix_image: ubuntu-22.04
bootstrap_args: '--enable-serialization --enable-release-symbols'
ci4:
uses: ./.github/workflows/ci-linux_mac.yml
with:
ci_backend: S3
matrix_image: macos-12
cmake_generator: 'Ninja' # Use Ninja due to performance issues.
timeout: 120
bootstrap_args: '--enable=s3,serialization,tools --enable-release-symbols'
ci5:
uses: ./.github/workflows/ci-linux_mac.yml
with:
ci_backend: GCS
matrix_image: macos-12
cmake_generator: 'Ninja' # Use Ninja due to performance issues.
timeout: 120
bootstrap_args: '--enable-gcs --enable-release-symbols'
ci6:
uses: ./.github/workflows/ci-linux_mac.yml
with:
ci_option: Experimental
matrix_image: ubuntu-22.04
bootstrap_args: '--enable=experimental-features,serialization --enable-release-symbols'
ci7:
uses: ./.github/workflows/ci-linux_mac.yml
with:
ci_backend: S3
matrix_image: ubuntu-22.04
timeout: 120
bootstrap_args: '--enable-s3 --enable-release-symbols'
ci8:
uses: ./.github/workflows/ci-linux_mac.yml
with:
ci_option: ASAN
matrix_image: ubuntu-20.04
matrix_compiler_cc: 'gcc-10'
matrix_compiler_cxx: 'g++-10'
timeout: 120
bootstrap_args: '--enable-serialization'
asan: true
ci9:
uses: ./.github/workflows/ci-linux_mac.yml
with:
ci_backend: AZURE
matrix_image: macos-12
cmake_generator: 'Ninja' # Use Ninja due to performance issues.
timeout: 120
bootstrap_args: '--enable-azure'
ci_manylinux:
uses: ./.github/workflows/ci-linux_mac.yml
with:
ci_backend: MANYLINUX
matrix_image: ubuntu-20.04
matrix_compiler_cflags: "-lrt"
matrix_compiler_cxxflags: "-lrt"
timeout: 120
bootstrap_args: '--enable-serialization'
manylinux: true
ci_msvc:
uses: ./.github/workflows/build-windows.yml
ci_mingw_r:
uses: ./.github/workflows/build-rtools40.yml
backward_compatibility:
uses: ./.github/workflows/build-ubuntu20.04-backwards-compatibility.yml
standalone:
uses: ./.github/workflows/unit-test-runs.yml
ci_docker:
uses: ./.github/workflows/build-dockerfile.yml
# dummy job for branch protection check
full_ci_passed:
needs: [
ci1,
ci2,
ci2,
ci3,
ci4,
ci5,
ci6,
ci7,
ci8,
ci9,
ci_manylinux,
ci_msvc,
backward_compatibility,
standalone
]
runs-on: ubuntu-22.04
steps:
- name: ''
run: echo "Complete"