Optimizes IonValue.getType() to avoid vtable/itable lookups when invoked on IonStruct values. #1027
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: build | |
permissions: read-all | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
submodules: recursive | |
- name: Setup Java | |
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2 | |
with: | |
distribution: 'corretto' | |
java-version: 8 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 | |
with: | |
validate-wrappers: true | |
- run: ./gradlew build | |
- uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0 | |
with: | |
files: build/reports/jacoco/test/jacocoTestReport.xml | |
- uses: actions/upload-artifact@1eb3cb2b3e0f29609092a73eb033bb759a334595 # v4.1.0 | |
with: | |
name: spotbugs-report | |
path: build/reports/spotbugs/ | |
- name: ion-java-cli sanity check | |
run: ./ion-test-driver-run version | |
verify-jre-compatibility: | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [8, 11, 17, 21] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
submodules: recursive | |
- name: Setup Java | |
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2 | |
with: | |
distribution: 'corretto' | |
java-version: | | |
8 | |
${{matrix.java}} | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 | |
with: | |
cache-read-only: true | |
validate-wrappers: true | |
- run: ./gradlew minifyTest${{matrix.java}} | |
check-version: | |
# Ensures that the version is not a release (i.e. -SNAPSHOT) or if it is a release version, | |
# ensures that the version is a later version number than the existing releases. | |
# See limitations at: | |
# https://github.com/amazon-ion/ion-java/blob/master/.github/actions/inspect-version/action.yml | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v3.6.0 | |
- name: Get Project Version | |
run: | | |
echo "PROJECT_VERSION=v$(<project.version)" >> $GITHUB_ENV | |
- uses: ./.github/actions/inspect-version | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
repo: amazon-ion/ion-java | |
project_version: ${{ env.PROJECT_VERSION }} | |
fail_if_invalid: true |