-
Notifications
You must be signed in to change notification settings - Fork 27
73 lines (67 loc) · 2.49 KB
/
TestCITools.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
#
# This tests the extension-ci-tools works as expected
#
name: Test CI Tools
on:
push:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' || github.sha }}
cancel-in-progress: true
jobs:
extension-template-main:
name: Extension template
uses: ./.github/workflows/_extension_distribution.yml
with:
extension_name: quack
override_repository: duckdb/extension-template
override_ref: main
duckdb_version: v1.1.3
override_ci_tools_repository: ${{ github.repository }}
ci_tools_version: ${{ github.sha }}
extra_toolchains: 'parser_tools;fortran;omp;go;python3'
extension-template-capi:
name: Extension template (C API)
uses: ./.github/workflows/_extension_distribution.yml
with:
extension_name: capi_quack
override_repository: duckdb/extension-template-c
override_ref: main
duckdb_version: v1.1.3
override_ci_tools_repository: ${{ github.repository }}
ci_tools_version: ${{ github.sha }}
extra_toolchains: 'python3'
extension-template-rust:
name: Extension template (Rust)
uses: ./.github/workflows/_extension_distribution.yml
with:
extension_name: rusty_quack
override_repository: duckdb/extension-template-rs
override_ref: main
duckdb_version: v1.1.3
override_ci_tools_repository: ${{ github.repository }}
ci_tools_version: ${{ github.sha }}
extra_toolchains: 'rust;python3'
exclude_archs: 'windows_amd64_rtools;windows_amd64_mingw' # TODO: remove once fixed upstream
delta-extension-main:
name: Rust builds (using Delta extension)
uses: ./.github/workflows/_extension_distribution.yml
with:
extension_name: delta
override_repository: duckdb/duckdb_delta
override_ref: 94f887bd539ec0d5ed0d31bd01ff3845cf378a9d
override_ci_tools_repository: ${{ github.repository }}
ci_tools_version: ${{ github.sha }}
duckdb_version: v1.1.3
exclude_archs: 'wasm_mvp;wasm_eh;wasm_threads;windows_amd64_rtools;windows_amd64'
extra_toolchains: 'rust'
code-quality-check:
name: Code quality check
uses: ./.github/workflows/_extension_code_quality.yml
with:
override_repository: duckdb/extension-template
override_ref: main
duckdb_version: v1.1.3
override_ci_tools_repository: ${{ github.repository }}
ci_tools_version: ${{ github.sha }}