Custom parsers / null literals should use pre-legalized names (issue #190) #504
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: Check CI | |
on: | |
pull_request: | |
branches: [ main ] | |
push: | |
branches: [ 'main', 'release/v*' ] | |
jobs: | |
check: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
customDoubleParser: [ 'fast-double-parser', 'none' ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check gitignore rules | |
run: .github/scripts/check-gitignore-rules.sh | |
- name: Setup JDK 8 | |
id: setup-java-8 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- name: Setup JDK 11 | |
id: setup-java-11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Setup JDK 17 | |
id: setup-java-17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Setup JDK 21 | |
id: setup-java-21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Setup JDK 23 | |
id: setup-java-23 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '23' | |
- name: Set JAVA_HOME | |
run: echo "JAVA_HOME=${{ steps.setup-java-21.outputs.path }}" >> $GITHUB_ENV | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Setup gradle properties | |
run: | | |
cat .github/env/${{ runner.os }}/gradle.properties >> gradle.properties | |
echo >> gradle.properties | |
echo "org.gradle.java.installations.paths=${{ steps.setup-java-8.outputs.path }},${{ steps.setup-java-11.outputs.path }},${{ steps.setup-java-17.outputs.path }},${{ steps.setup-java-21.outputs.path }},${{ steps.setup-java-23.outputs.path }}" >> gradle.properties | |
echo "customDoubleParser=${{ matrix.customDoubleParser }}" >> gradle.properties | |
cat gradle.properties | |
- name: Check | |
run: ./gradlew check | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: check-artifacts-${{ matrix.customDoubleParser }} | |
path: | | |
**/build/reports/tests/** | |
**/build/test-results/** | |
!**/build/test-results/**/binary/** | |
**/*_pid*.log |