Add native access system for getting IMPL_LOOKUP, and prefer if present to Unsafe due to deprecation #95
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
{ | |
"jobs": { | |
"natives-test": { | |
"needs": [ | |
"build" | |
], | |
"runs-on": "${{ matrix.runner }}", | |
"strategy": { | |
"fail-fast": false, | |
"matrix": { | |
"os": [ | |
"linux", | |
"windows", | |
"macos" | |
], | |
"arch": [ | |
"x86_64", | |
"aarch64", | |
"arm" | |
], | |
"exclude": [ | |
{ | |
"os": "macos", | |
"arch": "i386" | |
}, | |
{ | |
"os": "macos", | |
"arch": "arm" | |
}, | |
{ | |
"os": "windows", | |
"arch": "arm" | |
}, | |
{ | |
"os": "windows", | |
"arch": "aarch64" | |
}, | |
{ | |
"os": "macos", | |
"arch": "x86_64" | |
} | |
], | |
"include": [ | |
{ | |
"os": "macos", | |
"runner": "macos-latest", | |
"java_home": "$JAVA_HOME_17_arm64" | |
}, | |
{ | |
"os": "windows", | |
"runner": "windows-latest", | |
"java_home": "$JAVA_HOME_17_X64" | |
}, | |
{ | |
"os": "linux", | |
"runner": "ubuntu-latest", | |
"java_home": "$JAVA_HOME_17_X64" | |
}, | |
{ | |
"os": "linux", | |
"arch": "aarch64", | |
"qemu": "arm64", | |
"docker_arch": "arm64", | |
"docker": "arm64v8/eclipse-temurin:17" | |
}, | |
{ | |
"os": "linux", | |
"arch": "arm", | |
"qemu": "arm/v7", | |
"docker_arch": "arm/v7", | |
"docker": "arm32v7/eclipse-temurin:17" | |
} | |
] | |
} | |
}, | |
"steps": [ | |
{ | |
"with": { | |
"name": "natives-test-environment" | |
}, | |
"name": "Download Artifact", | |
"uses": "actions/download-artifact@v4", | |
"id": "download" | |
}, | |
{ | |
"name": "Setup QEMU", | |
"run": "sudo apt-get -qq install -y qemu qemu-user-static\ndocker run --rm --privileged multiarch/qemu-user-static --reset -p yes --credential yes", | |
"if": "${{ matrix.qemu }}" | |
}, | |
{ | |
"name": "Run with Docker", | |
"run": "docker run --workdir \"${GITHUB_WORKSPACE}\" -v \"${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE}:z\" --rm --platform linux/${{ matrix.docker_arch }} -t ${{ matrix.docker }} /bin/bash -c 'mkdir ../working; cp -r ./ ../working/; cd ../working; java @args-${{ matrix.os }}.txt; return=$?; cp -r ./ ${GITHUB_WORKSPACE}/; cd ${GITHUB_WORKSPACE}; exit $return'", | |
"if": "${{ matrix.docker }}" | |
}, | |
{ | |
"shell": "bash", | |
"name": "Run", | |
"run": "${{ matrix.java_home }}/bin/java @args-${{ matrix.os }}.txt", | |
"if": "${{ !matrix.qemu }}" | |
}, | |
{ | |
"with": { | |
"name": "junit-test-results-native-${{ matrix.os }}-${{ matrix.arch }}", | |
"path": "results/TEST-*.xml" | |
}, | |
"name": "Upload Results", | |
"uses": "actions/upload-artifact@v4", | |
"if": "(success() || failure()) && steps.download.outcome == 'success'" | |
} | |
] | |
}, | |
"aggregate-test-results": { | |
"needs": [ | |
"natives-test", | |
"build" | |
], | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"with": { | |
"pattern": "junit-test-results-*" | |
}, | |
"name": "Download Artifact", | |
"uses": "actions/download-artifact@v4", | |
"id": "download" | |
}, | |
{ | |
"with": { | |
"name": "junit-test-results", | |
"path": "**/TEST-*.xml" | |
}, | |
"name": "Upload Results", | |
"uses": "actions/upload-artifact@v4" | |
} | |
], | |
"if": "always()" | |
}, | |
"build": { | |
"runs-on": "ubuntu-22.04", | |
"permissions": { | |
"packages": "read" | |
}, | |
"steps": [ | |
{ | |
"name": "Setup Java", | |
"run": "echo \"JAVA_HOME=$JAVA_HOME_17_X64\" >> \"$GITHUB_ENV\"" | |
}, | |
{ | |
"with": { | |
"fetch-depth": "0", | |
"persist-credentials": "false" | |
}, | |
"name": "Checkout", | |
"uses": "actions/checkout@v4" | |
}, | |
{ | |
"name": "Validate Gradle Wrapper", | |
"uses": "gradle/actions/wrapper-validation@v3" | |
}, | |
{ | |
"with": { | |
"path": "**/.gradle/loom-cache\n**/.gradle/quilt-loom-cache", | |
"key": "${{ runner.os }}-gradle-${{ hashFiles('**/libs.versions.*', '**/*.gradle*', '**/gradle-wrapper.properties') }}", | |
"restore-keys": "${{ runner.os }}-gradle-" | |
}, | |
"name": "Cache", | |
"uses": "actions/cache/restore@v4" | |
}, | |
{ | |
"with": { | |
"cache-read-only": true, | |
"gradle-home-cache-cleanup": true | |
}, | |
"name": "Setup Gradle", | |
"uses": "gradle/actions/setup-gradle@v3" | |
}, | |
{ | |
"name": "Assemble", | |
"run": "./gradlew assemble :opensesame-natives:setupTestEnvironment", | |
"id": "assemble", | |
"env": { | |
"GITHUB_TOKEN": "${{ secrets.GITHUB_TOKEN }}", | |
"PR_NUMBER": "${{ github.event.pull_request.number }}" | |
} | |
}, | |
{ | |
"with": { | |
"name": "natives-test-environment", | |
"path": "natives/build/testEnvironment/*", | |
"retention-days": "1" | |
}, | |
"name": "Upload natives-test-environment", | |
"uses": "actions/upload-artifact@v4" | |
}, | |
{ | |
"name": "Test", | |
"run": "./gradlew check --continue", | |
"id": "test", | |
"env": { | |
"GITHUB_TOKEN": "${{ secrets.GITHUB_TOKEN }}", | |
"PR_NUMBER": "${{ github.event.pull_request.number }}" | |
} | |
}, | |
{ | |
"name": "Test Plugin", | |
"run": "./gradlew check --continue", | |
"id": "test_plugin", | |
"env": { | |
"GITHUB_TOKEN": "${{ secrets.GITHUB_TOKEN }}", | |
"PR_NUMBER": "${{ github.event.pull_request.number }}" | |
}, | |
"working-directory": "./testplugin", | |
"if": "(success() || failure()) && steps.assemble.outcome == 'success'" | |
}, | |
{ | |
"with": { | |
"name": "junit-test-results-gradle", | |
"path": "**/build/test-results/*/TEST-*.xml", | |
"retention-days": "1" | |
}, | |
"name": "Upload junit-test-results-gradle", | |
"uses": "actions/upload-artifact@v4", | |
"if": "(success() || failure()) && steps.assemble.outcome == 'success'" | |
}, | |
{ | |
"name": "Publish", | |
"run": "./gradlew publish", | |
"id": "publish", | |
"env": { | |
"GITHUB_TOKEN": "${{ secrets.GITHUB_TOKEN }}", | |
"PR_NUMBER": "${{ github.event.pull_request.number }}" | |
} | |
}, | |
{ | |
"with": { | |
"name": "artifacts", | |
"path": "build/repo" | |
}, | |
"name": "Archive Publishable Artifacts", | |
"uses": "actions/upload-artifact@v4" | |
} | |
] | |
} | |
}, | |
"name": "Build PR", | |
"concurrency": "ci-${{ github.ref }}", | |
"on": { | |
"pull_request": { | |
} | |
} | |
} |