Skip to content

Merge pull request #149 from kyonRay/master #152

Merge pull request #149 from kyonRay/master

Merge pull request #149 from kyonRay/master #152

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: test
on: [push, pull_request]
jobs:
build1:
name: default
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 5
- uses: codecov/codecov-action@v1
- name: install macOS dependencies
if: runner.os == 'macOS'
run: brew install [email protected] openjdk
- name: install Ubuntu dependencies
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt install -y git curl libssl-dev default-jdk build-essential
- name: run integration testing
run: /bin/bash .ci/ci_check.sh
build2:
name: jdk8
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 5
- uses: codecov/codecov-action@v1
- uses: actions/setup-java@v1
with:
java-version: 8
- name: install macOS dependencies
if: runner.os == 'macOS'
run: brew install [email protected] openjdk
- name: install Ubuntu dependencies
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt install -y git curl libssl-dev default-jdk build-essential
- name: run integration testing
run: /bin/bash .ci/ci_check.sh
build3:
name: jdk11
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 5
- uses: actions/setup-java@v1
with:
java-version: 11
- uses: codecov/codecov-action@v1
- name: install macOS dependencies
if: runner.os == 'macOS'
run: brew install [email protected] openjdk
- name: install Ubuntu dependencies
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt install -y git curl libssl-dev default-jdk build-essential
- name: run integration testing
run: /bin/bash .ci/ci_check.sh