External Library Models: Adding support for Nullable upper bounds of Generic Type parameters #2302
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: Continuous integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: "JDK ${{ matrix.java }} on ${{ matrix.os }} with Error Prone ${{ matrix.epVersion }}" | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
java: 11 | |
epVersion: 2.14.0 | |
- os: ubuntu-latest | |
java: 17 | |
epVersion: 2.14.0 | |
- os: macos-latest | |
java: 11 | |
epVersion: 2.27.1 | |
- os: ubuntu-latest | |
java: 11 | |
epVersion: 2.27.1 | |
- os: windows-latest | |
java: 11 | |
epVersion: 2.27.1 | |
- os: ubuntu-latest | |
java: 17 | |
epVersion: 2.27.1 | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out NullAway sources | |
uses: actions/checkout@v4 | |
- name: 'Set up JDKs' | |
uses: actions/setup-java@v4 | |
with: | |
java-version: | | |
21 | |
17 | |
${{ matrix.java }} | |
distribution: 'temurin' | |
- name: Validate Gradle wrappers | |
uses: gradle/actions/wrapper-validation@v3 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Build and test using Java ${{ matrix.java }} and Error Prone ${{ matrix.epVersion }} | |
env: | |
ORG_GRADLE_PROJECT_epApiVersion: ${{ matrix.epVersion }} | |
run: ./gradlew build | |
- name: Run shellcheck | |
run: ./gradlew shellcheck | |
if: runner.os == 'Linux' | |
- name: Aggregate jacoco coverage | |
id: jacoco_report | |
env: | |
ORG_GRADLE_PROJECT_epApiVersion: ${{ matrix.epVersion }} | |
run: ./gradlew codeCoverageReport | |
continue-on-error: true | |
if: runner.os == 'Linux' && matrix.java == '11' && matrix.epVersion == '2.27.1' && github.repository == 'uber/NullAway' | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ./code-coverage-report/build/reports/jacoco/codeCoverageReport/codeCoverageReport.xml | |
token: ${{ secrets.CODECOV_TOKEN }} | |
if: steps.jacoco_report.outcome == 'success' | |
- name: Test publishToMavenLocal flow | |
env: | |
ORG_GRADLE_PROJECT_epApiVersion: ${{ matrix.epVersion }} | |
ORG_GRADLE_PROJECT_VERSION_NAME: '0.0.0.1-LOCAL' | |
ORG_GRADLE_PROJECT_RELEASE_SIGNING_ENABLED: 'false' | |
run: ./gradlew publishToMavenLocal | |
if: matrix.java == '11' | |
- name: Check that Git tree is clean after build and test | |
run: ./.buildscript/check_git_clean.sh |