Release 1.1.6 #656
This file contains hidden or 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
| # Pull request metadata library gate: checkstyle and unit tests. | |
| # §AR-repository-ci.1.5; §common/FS-common-libraries.5 | |
| name: "Test GraalVM Reachability Metadata Repository" | |
| on: | |
| pull_request: | |
| paths: | |
| - 'common/graalvm-reachability-metadata/**' | |
| - '.github/actions/**' | |
| - '.github/workflows/test-graalvm-metadata.yml' | |
| - 'gradle/libs.versions.toml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}" | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'graalvm/native-build-tools' }} | |
| jobs: | |
| test-graalvm-reachability-metadata: | |
| name: "Test GraalVM Reachability Metadata" | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java-version: [ 17.0.12 ] | |
| os: [ ubuntu-22.04 ] | |
| steps: | |
| - name: "☁️ Checkout repository" | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - name: "🔧 Prepare environment" | |
| uses: ./.github/actions/prepare-environment | |
| with: | |
| java-version: ${{ matrix.java-version }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: "❓ Checkstyle" | |
| run: ./gradlew :graalvm-reachability-metadata:checkstyleMain :graalvm-reachability-metadata:checkstyleTest | |
| - name: "❓ GraalVM Reachability Metadata test" | |
| run: ./gradlew :graalvm-reachability-metadata:test | |
| - name: "📜 Upload tests results" | |
| if: always() | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 | |
| with: | |
| name: tests-results-${{ strategy.job-index }}-${{ matrix.java-version }}-${{ matrix.os }} | |
| path: common/graalvm-reachability-metadata/build/reports/tests/ |