Merge branch 'release/1.0.2' #72
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: Tests | |
on: [push] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: | |
- 8 | |
- 11 | |
kubernetes: | |
- 'v1.21.6' | |
- 'v1.22.17' | |
- 'v1.23.17' | |
- 'v1.24.15' | |
- 'v1.25.11' | |
- 'v1.26.6' | |
- 'v1.27.3' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Cache Maven packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Setup Minikube | |
uses: manusa/actions-setup-minikube@v2.7.2 | |
with: | |
minikube version: 'v1.30.1' | |
kubernetes version: ${{ matrix.kubernetes }} | |
github token: ${{ secrets.GITHUB_TOKEN }} | |
container runtime: containerd | |
driver: docker | |
- name: Setup Docker | |
run: sudo apt-get -qq -y install conntrack socat ; nohup socat TCP-LISTEN:2375,reuseaddr,fork UNIX-CONNECT:/var/run/docker.sock & | |
- name: Setup Docker Swarm | |
run: docker swarm init | |
- name: Pull Image | |
run: docker pull openanalytics/shinyproxy-demo:latest | |
- name: Run redis | |
run: docker run -d -p 6379:6379 redis | |
- name: Build with Maven | |
run: mvn -B -U clean install -DskipTests | |
- name: Copy Artifact | |
run: cp target/containerproxy-*-exec.jar target/containerproxy-app-recovery.jar | |
- name: debug | |
run: | | |
docker ps -a | |
kubectl get pod -A | |
- name: Run Tests | |
run: mvn -B test | |
dependency: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Dependency Check | |
run: mvn -B -Powasp-dependency-check verify -DskipTests | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v2 | |
with: | |
name: dependency-check-report | |
path: target/dependency-check-report.html |