Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Java-SDK GitHub Actions
on:
push:
branches:
- master
- 'release-*'
pull_request:
release:
types: [ published, created, edited ]
Expand All @@ -10,12 +14,16 @@ env:
jobs:
build:
name: build
# Heavy integration build runs on PRs and releases only; pushes to the main
# branches run just the lightweight 'coverage' job below (to upload a Codecov
# BASE report so PRs can show a coverage delta).
if: github.event_name != 'push'
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [ ubuntu-22.04, windows-2025, macos-latest ]
os: [ ubuntu-latest, windows-2025, macos-latest ]
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -41,7 +49,7 @@ jobs:
- name: install macOS dependencies
if: runner.os == 'macOS'
run: |
brew install openssl@1.1 ccache
brew install openssl@3 ccache
- name: Set up JDK 1.8.0.382
uses: actions/setup-java@v3
with:
Expand All @@ -56,7 +64,7 @@ jobs:

coverage:
name: coverage
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v3
Expand Down
Loading