forked from debezium/debezium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconnector-informix-workflow.yml
More file actions
53 lines (47 loc) · 1.57 KB
/
connector-informix-workflow.yml
File metadata and controls
53 lines (47 loc) · 1.57 KB
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
name: Informix Builds
on:
workflow_call:
inputs:
maven-cache-key:
description: "The cache key to use to restore/save build caches."
required: true
type: string
checkout-ref:
description: "The checkout reference to be used for the Cassandra repository."
required: true
type: string
max-parallel:
description: "The maximum number of workers to consume, by default uses all available."
required: false
type: number
jobs:
build-informix:
strategy:
max-parallel: ${{ inputs.max-parallel }}
fail-fast: false
matrix:
profile: [ "assembly,informix12", "assembly,informix14", "assembly,informix15" ]
name: Informix - ${{ matrix.profile }}
runs-on: ubuntu-latest
steps:
- name: Checkout (Debezium Core)
uses: actions/checkout@v6
with:
path: core
- name: Checkout (Informix)
uses: actions/checkout@v6
with:
repository: debezium/debezium-connector-informix
path: informix
ref: ${{ inputs.checkout-ref }}
- uses: ./core/.github/actions/setup-java
- uses: ./core/.github/actions/maven-cache
with:
key: ${{ inputs.maven-cache-key }}-${{ hashFiles('core/**/pom.xml') }}
- name: Build Informix - ${{ matrix.profile }}
uses: ./core/.github/actions/build-debezium-informix
with:
path-core: core
path-informix: informix
cache-hit: ${{ steps.cache-check.outputs.cache-hit }}
profile: ${{ matrix.profile }}