-
Notifications
You must be signed in to change notification settings - Fork 52
181 lines (175 loc) · 5.52 KB
/
ci-build.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to you under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Build
env:
MAVEN_OPTS: -Xmx3000m
MAVEN_ARGS: -V -ntp -Dhttp.keepAlive=false -e
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
on:
push:
branches:
- main
- camel-quarkus-3
- "release-*"
paths-ignore:
- '**.adoc'
- 'KEYS'
- 'LICENSE'
- 'NOTICE'
- 'Jenkinsfile'
pull_request:
branches:
- main
- camel-quarkus-3
- "release-*"
paths-ignore:
- '**.adoc'
- 'KEYS'
- 'LICENSE'
- 'NOTICE'
- 'Jenkinsfile'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java:
- '17'
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Build camel-k-runtime
run: ./mvnw -V -ntp clean install
- name: Tar Maven Repo
shell: bash
run: tar -czf maven-repo-${{ github.run_id }}-${{ github.run_number }}.tgz -C ~ .m2/repository
- name: Persist Maven Repo
uses: actions/upload-artifact@v4
with:
name: maven-repo-${{ github.run_id }}-${{ github.run_number }}
path: maven-repo-${{ github.run_id }}-${{ github.run_number }}.tgz
build-native:
runs-on: ubuntu-latest
needs: build
strategy:
fail-fast: false
matrix:
native-image-project:
- :camel-k-itests-core
- :camel-k-itests-cron
- :camel-k-itests-kamelet
- :camel-k-itests-knative
- :camel-k-itests-knative-env-from-registry
- :camel-k-itests-knative-env-from-properties
- :camel-k-itests-knative-producer
- :camel-k-itests-knative-consumer
- :camel-k-itests-knative-sinkbinding
- :camel-k-itests-loader-xml
- :camel-k-itests-loader-yaml
- :camel-k-itests-loader-polyglot
- :camel-k-itests-runtime
- :camel-k-itests-runtime-xml
- :camel-k-itests-runtime-yaml
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up JDK 17
uses: AdoptOpenJDK/install-jdk@v1
with:
version: '17'
- name: Download Maven Repo
uses: actions/download-artifact@v4.1.8
with:
name: maven-repo-${{ github.run_id }}-${{ github.run_number }}
path: .
- name: Extract Maven Repo
shell: bash
run: tar -xzf maven-repo-${{ github.run_id }}-${{ github.run_number }}.tgz -C ~
- name: Integration Test - ${{ matrix.native-image-project }}
run: |
./mvnw ${MAVEN_ARGS} -B -nsu clean install \
-Dnative \
-Dnative-image.xmx=6g \
-Ddocker \
-pl ${{ matrix.native-image-project }}
build-native-examples:
runs-on: ubuntu-latest
needs: build
strategy:
fail-fast: false
matrix:
native-image-project:
- :camel-k-runtime-example-xml
- :camel-k-runtime-example-yaml
- :camel-k-runtime-example-knative
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up JDK 17
uses: AdoptOpenJDK/install-jdk@v1
with:
version: '17'
- name: Download Maven Repo
uses: actions/download-artifact@v4.1.8
with:
name: maven-repo-${{ github.run_id }}-${{ github.run_number }}
path: .
- name: Extract Maven Repo
shell: bash
run: tar -xzf maven-repo-${{ github.run_id }}-${{ github.run_number }}.tgz -C ~
- name: Integration Test - ${{ matrix.native-image-project }}
run: |
./mvnw ${MAVEN_ARGS} -B -nsu clean install \
-Dnative \
-Dnative-image.xmx=6g \
-Ddocker \
-pl ${{ matrix.native-image-project }}
deploy:
runs-on: ubuntu-latest
needs:
- build-native
- build-native-examples
# Run only when pushing to the branches (either main or release), never on merge requests
if: ${{ github.event_name == 'push' }}
env:
NEXUS_DEPLOY_USERNAME: ${{ secrets.NEXUS_USER }}
NEXUS_DEPLOY_PASSWORD: ${{ secrets.NEXUS_PW }}
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up JDK 17
uses: AdoptOpenJDK/install-jdk@v1
with:
version: '17'
- name: Deploy to ASF Snapshots Repository
# Deploy both artifacts and sources (may be required by Camel K)
run: |
./mvnw ${MAVEN_ARGS} clean deploy -DskipTests -DskipITs --settings .github/asf-deploy-settings.xml