docs: add repository info #209
Workflow file for this run
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
name: Integration test for Rolling Update CR Kubernetes | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- release-* | |
tags-ignore: [ v.* ] | |
schedule: | |
- cron: '0 2 * * *' # every day 2am | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
integration-test: | |
name: Integration Tests for Rolling Update CR Kubernetes | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Checkout GitHub merge | |
if: github.event.pull_request | |
run: |- | |
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch | |
git checkout scratch | |
- name: Cache Coursier cache | |
uses: coursier/[email protected] | |
- name: Set up JDK 11 | |
uses: coursier/[email protected] | |
with: | |
jvm: temurin:1.11.0 | |
- name: Setup Minikube | |
# https://github.com/manusa/actions-setup-minikube/releases | |
# v2.7.1 | |
uses: manusa/actions-setup-minikube@4582844dcacbf482729f8d7ef696f515d2141bb9 | |
with: | |
minikube version: 'v1.21.0' | |
kubernetes version: 'v1.22.0' | |
driver: docker | |
start args: '--addons=ingress' | |
- name: Run Integration Tests | |
timeout-minutes: 15 | |
run: |- | |
echo 'Creating namespace' | |
kubectl create namespace rolling | |
echo 'Creating resources' | |
kubectl apply -f ./rolling-update-kubernetes/pod-cost.yml | |
echo 'Adding proxy port' | |
kubectl proxy --port=8080 & | |
echo 'Running tests' | |
sbt "rolling-update-kubernetes/IntegrationTest/test" | |
./integration-test/rollingupdate-kubernetes/test-cr.sh | |
- name: Print logs on failure | |
if: ${{ failure() }} | |
run: find . -name "*.log" -exec ./scripts/cat-log.sh {} \; |