Nightly #137
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# --------------------------------------------------------------------------- | |
# 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: Nightly | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "15 0 * * 1-5" | |
jobs: | |
preview: | |
strategy: | |
matrix: | |
version: | |
- 2.1.0-nightly | |
runs-on: ubuntu-latest | |
env: | |
YAKS_VERSION: 0.15.1 | |
YAKS_IMAGE_NAME: "docker.io/citrusframework/yaks" | |
YAKS_RUN_OPTIONS: "--timeout=15m" | |
KUBECTL_WAIT_TIMEOUT: "180s" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Cleanup | |
run: | | |
ls -lart | |
echo "Initial status:" | |
df -h | |
echo "Cleaning up resources:" | |
sudo swapoff -a | |
sudo rm -f /swapfile | |
sudo apt clean | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /opt/ghc | |
sudo rm -rf "/usr/local/share/boost" | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
docker rmi $(docker image ls -aq) | |
echo "Final status:" | |
df -h | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Kind Cluster | |
uses: container-tools/[email protected] | |
with: | |
version: v0.17.0 | |
node_image: kindest/node:v1.28.0@sha256:9f3ff58f19dcf1a0611d11e8ac989fdb30a28f40f236f59f0bea31fb956ccf5c | |
- name: Info | |
run: | | |
kubectl version | |
kubectl cluster-info | |
kubectl describe nodes | |
- name: Camel K Tools | |
uses: container-tools/[email protected] | |
with: | |
version: ${{ matrix.version }} | |
- name: Install Camel K | |
run: | | |
# Configure install options | |
export KAMEL_INSTALL_BUILD_PUBLISH_STRATEGY=Spectrum | |
export KAMEL_INSTALL_REGISTRY=$KIND_REGISTRY | |
export KAMEL_INSTALL_REGISTRY_INSECURE=true | |
kamel install --maven-repository=https://repository.apache.org/content/repositories/snapshots@id=apache-snapshots@snapshots | |
# Wait for operator to start | |
kubectl wait pod -l app=camel-k --for condition=Ready --timeout=${{ env.KUBECTL_WAIT_TIMEOUT }} | |
- name: YAKS tools | |
uses: citrusframework/[email protected] | |
with: | |
version: v${{ env.YAKS_VERSION }} | |
- name: Install YAKS | |
run: | | |
yaks install --operator-image $YAKS_IMAGE_NAME:$YAKS_VERSION | |
# Wait for operator to start | |
kubectl wait pod -l app=yaks --for condition=Ready --timeout=${{ env.KUBECTL_WAIT_TIMEOUT }} | |
- name: YAKS Tests | |
run: | | |
# Then run integration tests | |
yaks run jms-source/test/jms-source.feature $YAKS_RUN_OPTIONS | |
yaks run jms-sink/test/jms-sink.feature $YAKS_RUN_OPTIONS | |
- name: YAKS Report | |
if: failure() | |
run: | | |
yaks report | |
- uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: dumps | |
path: _output/*-dump.log | |
test: | |
strategy: | |
matrix: | |
version: | |
- latest | |
runs-on: ubuntu-latest | |
env: | |
YAKS_VERSION: 0.15.1 | |
YAKS_IMAGE_NAME: "docker.io/citrusframework/yaks" | |
YAKS_RUN_OPTIONS: "--timeout=15m" | |
KUBECTL_WAIT_TIMEOUT: "180s" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Cleanup | |
run: | | |
ls -lart | |
echo "Initial status:" | |
df -h | |
echo "Cleaning up resources:" | |
sudo swapoff -a | |
sudo rm -f /swapfile | |
sudo apt clean | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /opt/ghc | |
sudo rm -rf "/usr/local/share/boost" | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
docker rmi $(docker image ls -aq) | |
echo "Final status:" | |
df -h | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Kind Cluster | |
uses: container-tools/[email protected] | |
with: | |
version: v0.17.0 | |
node_image: kindest/node:v1.28.0@sha256:9f3ff58f19dcf1a0611d11e8ac989fdb30a28f40f236f59f0bea31fb956ccf5c | |
- name: Info | |
run: | | |
kubectl version | |
kubectl cluster-info | |
kubectl describe nodes | |
- name: Camel K Tools | |
uses: container-tools/[email protected] | |
with: | |
version: ${{ matrix.version }} | |
- name: Install Camel K | |
run: | | |
# Configure install options | |
export KAMEL_INSTALL_BUILD_PUBLISH_STRATEGY=Spectrum | |
export KAMEL_INSTALL_REGISTRY=$KIND_REGISTRY | |
export KAMEL_INSTALL_REGISTRY_INSECURE=true | |
kamel install | |
# Wait for operator to start | |
kubectl wait pod -l app=camel-k --for condition=Ready --timeout=${{ env.KUBECTL_WAIT_TIMEOUT }} | |
- name: YAKS tools | |
uses: citrusframework/[email protected] | |
with: | |
version: v${{ env.YAKS_VERSION }} | |
- name: Install YAKS | |
run: | | |
yaks install --operator-image $YAKS_IMAGE_NAME:$YAKS_VERSION | |
# Wait for operator to start | |
kubectl wait pod -l app=yaks --for condition=Ready --timeout=${{ env.KUBECTL_WAIT_TIMEOUT }} | |
- name: YAKS Tests | |
run: | | |
# Then run integration tests | |
yaks run jms-source/test/jms-source.feature $YAKS_RUN_OPTIONS | |
yaks run jms-sink/test/jms-sink.feature $YAKS_RUN_OPTIONS | |
- name: YAKS Report | |
if: failure() | |
run: | | |
yaks report | |
- uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: dumps | |
path: _output/*-dump.log |