-
Notifications
You must be signed in to change notification settings - Fork 209
106 lines (90 loc) · 3.24 KB
/
nightly-quarkus-ecosystem.yaml
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
name: "Quarkus ecosystem CI"
on:
watch:
types: [started]
# For this CI to work, ECOSYSTEM_CI_TOKEN needs to contain a GitHub with rights to close the Quarkus issue that the user/bot has opened,
# while 'ECOSYSTEM_CI_REPO_PATH' needs to be set to the corresponding path in the 'quarkusio/quarkus-ecosystem-ci' repository
env:
ECOSYSTEM_CI_REPO: quarkusio/quarkus-ecosystem-ci
ECOSYSTEM_CI_REPO_FILE: context.yaml
JAVA_VERSION: 11
#########################
# Repo specific setting #
#########################
ECOSYSTEM_CI_REPO_PATH: kogito-quarkus
jobs:
quarkus-main:
name: "Build against latest Quarkus snapshot"
runs-on: ubuntu-latest
timeout-minutes: 360
if: github.actor == 'quarkusbot'
env:
INTEGRATION_BRANCH: main-integration-quarkus-main
steps:
- name: Install yq
run: sudo add-apt-repository ppa:rmescandon/yq && sudo apt update && sudo apt install yq -y
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: temurin
check-latest: true
- name: Checkout Drools repository on integration branch
uses: actions/checkout@v3
with:
repository: kiegroup/drools
path: drools
ref: ${{ env.INTEGRATION_BRANCH }}
- name: Checkout current repository on integration branch
uses: actions/checkout@v3
with:
path: current-repo
ref: ${{ env.INTEGRATION_BRANCH }}
- name: Checkout Ecosystem
uses: actions/checkout@v3
with:
repository: ${{ env.ECOSYSTEM_CI_REPO }}
ref: main
path: ecosystem-ci
- name: Setup and Run Tests against Quarkus main
run: ./ecosystem-ci/setup-and-test
env:
ECOSYSTEM_CI_TOKEN: ${{ secrets.ECOSYSTEM_CI_TOKEN }}
quarkus-lts:
name: "Build against latest Quarkus LTS"
runs-on: ubuntu-latest
if: github.actor == 'quarkusbot'
env:
INTEGRATION_BRANCH: main-integration-quarkus-lts
steps:
- name: Install yq
run: sudo add-apt-repository ppa:rmescandon/yq && sudo apt update && sudo apt install yq -y
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: temurin
check-latest: true
- name: Checkout drools repository on integration branch
uses: actions/checkout@v3
with:
repository: kiegroup/drools
path: drools
ref: ${{ env.INTEGRATION_BRANCH }}
- name: Checkout current repository on integration branch
uses: actions/checkout@v3
with:
path: current-repo
ref: ${{ env.INTEGRATION_BRANCH }}
- name: Checkout Ecosystem
uses: actions/checkout@v3
with:
repository: ${{ env.ECOSYSTEM_CI_REPO }}
ref: main
path: ecosystem-ci
- name: Setup and Run Tests against Quarkus LTS
run: ./ecosystem-ci/setup-and-test
env:
ECOSYSTEM_CI_TOKEN: ${{ secrets.ECOSYSTEM_CI_TOKEN }}
ALTERNATIVE: lts
MAVEN_EXTRA_OPTS: -Dproductized -Ddata-index-ephemeral.image=quay.io/kiegroup/kogito-data-index-ephemeral