Update sbt to 1.10.4 (#350) #1585
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 Kubernetes Lease | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- release-* | |
tags-ignore: [ v.* ] | |
schedule: | |
- cron: '0 2 * * *' # every day 2am | |
jobs: | |
integration-test: | |
name: Integration test for Kubernetes Lease | |
runs-on: ubuntu-22.04 | |
if: github.repository == 'apache/pekko-management' | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
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: Install sbt | |
uses: sbt/setup-sbt@v1 | |
- name: Setup Java 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: Cache Coursier cache | |
uses: coursier/cache-action@v6 | |
- name: Setup Minikube | |
uses: manusa/actions-setup-minikube@v2.11.0 | |
with: | |
minikube version: 'v1.27.1' # based on k8s v1.25.2 | |
kubernetes version: 'v1.25.2' | |
driver: docker | |
github token: ${{ secrets.GITHUB_TOKEN }} | |
start args: '--addons=ingress' | |
- name: Run Integration Tests | |
timeout-minutes: 15 | |
run: |- | |
echo 'Creating namespace' | |
kubectl create namespace lease | |
echo 'Creating resources' | |
kubectl apply -f ./lease-kubernetes/lease.yml | |
echo 'Adding proxy port' | |
kubectl proxy --port=8080 & | |
echo 'Running tests' | |
sbt ";lease-kubernetes/it:test" | |
./lease-kubernetes-int-test/test.sh job.yml | |
./lease-kubernetes-int-test/test.sh job-native.yml | |
- name: Print logs on failure | |
if: ${{ failure() }} | |
run: find . -name "*.log" -exec ./scripts/cat-log.sh {} \; |