blob: 0585333eee472bb1bc199f2dd42c2e3a82647c1e [file] [log] [blame]
#
# 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
on:
push:
branches:
- master
paths-ignore:
- '**.adoc'
- 'KEYS'
- 'LICENSE'
- 'NOTICE'
- 'Jenkinsfile'
pull_request:
branches:
- master
paths-ignore:
- '**.adoc'
- 'KEYS'
- 'LICENSE'
- 'NOTICE'
- 'Jenkinsfile'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: AdoptOpenJDK/install-jdk@v1
with:
version: '11'
- 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@v1
with:
name: maven-repo-${{ github.run_id }}-${{ github.run_number }}
path: maven-repo-${{ github.run_id }}-${{ github.run_number }}.tgz
build-additional-jvm:
runs-on: ubuntu-latest
strategy:
matrix:
java:
- '14'
steps:
- uses: actions/checkout@v2
- name: Set up JDK - ${{ matrix.java }}
uses: AdoptOpenJDK/install-jdk@v1
with:
version: ${{ matrix.java }}
- name: Build on ${{ matrix.java }}
run: |
./mvnw ${MAVEN_ARGS} -B clean install
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-knative-source-js
- :camel-k-itests-knative-source-xml
- :camel-k-itests-knative-source-yaml
- :camel-k-itests-loader-xml
- :camel-k-itests-loader-yaml
#- :camel-k-itests-loader-js
- :camel-k-itests-loader-polyglot
- :camel-k-itests-master
- :camel-k-itests-runtime
- :camel-k-itests-runtime-xml
- :camel-k-itests-runtime-yaml
- :camel-k-itests-wrap
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK 11
uses: AdoptOpenJDK/install-jdk@v1
with:
version: '11'
- name: Download Maven Repo
uses: actions/download-artifact@v1
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@v2
- name: Set up JDK 11
uses: AdoptOpenJDK/install-jdk@v1
with:
version: '11'
- name: Download Maven Repo
uses: actions/download-artifact@v1
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
if: github.ref == 'refs/heads/master'
env:
NEXUS_DEPLOY_USERNAME: ${{ secrets.NEXUS_USER }}
NEXUS_DEPLOY_PASSWORD: ${{ secrets.NEXUS_PW }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: AdoptOpenJDK/install-jdk@v1
with:
version: '11'
- name: Deploy to ASF Snapshots Repository
run: ./mvnw ${MAVEN_ARGS} clean deploy -DskipTests -DskipITs --settings .github/asf-deploy-settings.xml