Release v2.10.1 #2464
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: Java-SDK GitHub Actions | |
on: | |
pull_request: | |
release: | |
types: [published, created, edited] | |
env: | |
CCACHE_DIR: ${{ github.workspace }}/ccache | |
jobs: | |
build: | |
name: build | |
runs-on: ${{ matrix.os }} | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04, macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 5 | |
- name: install macOS dependencies | |
if: runner.os == 'macOS' | |
run: brew install [email protected] | |
- name: install Ubuntu dependencies | |
if: runner.os == 'Linux' | |
run: sudo apt-get update && sudo apt install -y git curl libssl-dev build-essential | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '8.0.345' | |
- name: run integration testing | |
run: /bin/bash .ci/ci_check.sh |