Move from unmaintained jsch to com.github.mwiede fork (#471) #61
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
# Copyright 2020 Oracle Corporation and/or its affiliates. All rights reserved. | |
# Licensed under the Universal Permissive License v 1.0 as shown at | |
# http://oss.oracle.com/licenses/upl. | |
# --------------------------------------------------------------------------- | |
# Coherence CE GitHub Actions CI build. | |
# --------------------------------------------------------------------------- | |
name: CI Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
# First run a simple compile and unit tests | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
module: | |
- bedrock-coherence/21.06/coherence-21.06 | |
- bedrock-coherence/21.06/coherence-21.06-testing-support | |
- bedrock-coherence/21.06/coherence-21.06-testing-support-tests-junit4 | |
- bedrock-coherence/21.06/coherence-21.06-testing-support-tests-junit5 | |
- bedrock-coherence/14.1.1/coherence-14.1.1 | |
- bedrock-coherence/14.1.1/coherence-14.1.1-testing-support | |
- bedrock-coherence/14.1.1/coherence-14.1.1-testing-support-tests-junit4 | |
- bedrock-coherence/14.1.1/coherence-14.1.1-testing-support-tests-junit5 | |
- bedrock-core | |
- bedrock-runtime | |
- bedrock-runtime-docker-tests | |
- bedrock-runtime-jacoco | |
- bedrock-runtime-jprofiler | |
- bedrock-runtime-k8s | |
- bedrock-runtime-maven-tests | |
# - bedrock-runtime-remote-tests | |
- bedrock-runtime-tests | |
- bedrock-runtime-vagrant-tests | |
- bedrock-runtime-virtual-tests | |
- bedrock-testing-support | |
- bedrock-testing-support-tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '11' | |
- name: Cache Maven packages | |
uses: actions/cache@v1 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2- | |
- name: Build | |
shell: bash | |
run: | | |
export DEV_ROOT=$(pwd) | |
mvn -U --batch-mode -e clean install -DskipTests -Pcoherence-ce | |
mvn -U --batch-mode -e verify -pl ${{ matrix.module }} -Pcoherence-ce -Dgithub.build=true |