bump: mockito-core 5.14.2 (was 5.14.0) #513
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 | |
steps: | |
- name: Checkout | |
# https://github.com/actions/checkout/releases | |
# v4.1.1 | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
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 | |
# https://github.com/coursier/cache-action/releases | |
# v6.4.5 | |
uses: coursier/cache-action@1ff273bff02a8787bc9f1877d347948af647956d | |
- name: Set up JDK 11 | |
# https://github.com/coursier/setup-action/releases | |
# v1.3.5 | |
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f | |
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.32.0' | |
kubernetes version: 'v1.28.4' | |
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 "integration-test-rolling-update-kubernetes/test" | |
./integration-test/rolling-update-kubernetes/test-cr.sh | |
- name: Print logs on failure | |
if: ${{ failure() }} | |
run: find . -name "*.log" -exec ./scripts/cat-log.sh {} \; |