beta release #111
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
| name: Java CI Combined | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| setup: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| version: ${{ steps.extract-version.outputs.VERSION }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '11' | |
| - name: Cache Maven packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2 | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven- | |
| - name: Extract version number | |
| id: extract-version | |
| run: | | |
| VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout) | |
| echo "::set-output name=VERSION::$VERSION" | |
| - name: Cache Lucee files | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/work/_actions/lucee/script-runner/main/lucee-download-cache | |
| key: lucee-downloads | |
| - name: Import GPG key | |
| run: | | |
| echo "$GPG_PRIVATE_KEY" | base64 --decode | gpg --batch --import | |
| env: | |
| GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| needs: setup | |
| env: | |
| LUCEE_TEST_VERSIONS_PLUS: ${{ vars.LUCEE_TEST_VERSIONS_PLUS }} | |
| strategy: | |
| matrix: | |
| lucee: ${{ fromJSON(vars.LUCEE_TEST_VERSIONS_PLUS) }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '11' | |
| distribution: 'adopt' | |
| - name: Build and Install with Maven (for testing only) | |
| env: | |
| MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} | |
| MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | |
| GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
| run: | | |
| echo "------- Maven Install (to create a local test build) -------"; | |
| mvn -B -e -f pom.xml clean install -Dgoal=install | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: guard-lex-${{ matrix.lucee.version }} | |
| path: target/*.lex | |
| - name: Debug Matrix Values | |
| run: | | |
| echo "Lucee Version: ${{ matrix.lucee.version }}" | |
| echo "Lucee Query: ${{ matrix.lucee.query }}" | |
| echo "Lucee Branch: '${{ matrix.lucee.branch }}'" | |
| - name: Checkout Lucee | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: lucee/lucee | |
| path: lucee | |
| ref: ${{ matrix.lucee.branch }} | |
| - name: Run Lucee Test Suite | |
| uses: lucee/script-runner@main | |
| with: | |
| webroot: ${{ github.workspace }}/lucee/test | |
| execute: /bootstrap-tests.cfm | |
| luceeVersion: ${{ matrix.lucee.version }} | |
| luceeVersionQuery: ${{ matrix.lucee.query }} | |
| extensionDir: ${{ github.workspace }}/target | |
| env: | |
| testLabels: guard | |
| testAdditional: ${{ github.workspace }}/tests | |
| LUCEE_ADMIN_PASSWORD: admin | |
| deploy: | |
| runs-on: ubuntu-latest | |
| needs: [build-and-test] | |
| if: always() && needs.build-and-test.result == 'success' | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '11' | |
| - name: Cache Maven packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2 | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven- | |
| - name: Import GPG key | |
| run: | | |
| echo "$GPG_PRIVATE_KEY" | base64 --decode | gpg --batch --import | |
| env: | |
| GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
| - name: Debug env | |
| env: | |
| MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} | |
| run: | | |
| if [[ -z "${MAVEN_USERNAME}" ]]; then echo "MAVEN_USERNAME is empty"; exit 1; fi | |
| echo "::add-mask::${MAVEN_USERNAME}" # ensure masking | |
| echo "MAVEN_USERNAME (masked): ${MAVEN_USERNAME}" | |
| echo "MAVEN_USERNAME length: ${#MAVEN_USERNAME}" | |
| printf "MAVEN_USERNAME sha256: %s\n" "$(printf %s "$MAVEN_USERNAME" | sha256sum | cut -d' ' -f1)" | |
| - name: Build and Deploy with Maven | |
| env: | |
| MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} | |
| MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | |
| GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
| run: | | |
| if [[ "${{ needs.setup.outputs.version }}" == *-SNAPSHOT ]]; then | |
| echo "------- Maven Deploy snapshot on ${{ github.event_name }} -------"; | |
| mvn -B -e -f pom.xml clean deploy -Dgoal=deploy --settings maven-settings.xml | |
| elif [[ "${{ needs.setup.outputs.version }}" == *-ALPHA ]]; then | |
| echo "------- Maven Install alpha on ${{ github.event_name }} -------"; | |
| mvn -B -e -f pom.xml clean install -Dgoal=install --settings maven-settings.xml | |
| else | |
| echo "------- Maven Deploy release on ${{ github.event_name }} -------"; | |
| mvn -B -e -f pom.xml clean deploy -Dgoal=deploy -DperformRelease=true --settings maven-settings.xml | |
| fi |