-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
293af71
commit 11e33a6
Showing
7 changed files
with
455 additions
and
118 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,150 @@ | ||
# This workflow will build a Java project with Ant | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant | ||
name: Java CI Combined | ||
|
||
name: Java CI - Lucee latest | ||
|
||
on: [push, pull_request,workflow_dispatch] | ||
on: [push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
build: | ||
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@v3 | ||
with: | ||
path: ~/.m2 | ||
key: lucee-script-runner-maven-cache | ||
- 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: | ||
luceeVersion: light-6.0.0.451-BETA | ||
luceeVersionQuery: 0/all/light | ||
testLabels: image | ||
testAdditional: ${{ github.workspace }}/tests | ||
MYSQL_SERVER: localhost | ||
MYSQL_USERNAME: lucee | ||
MYSQL_PASSWORD: lucee | ||
MYSQL_PORT: 3306 | ||
MYSQL_DATABASE: lucee | ||
strategy: | ||
matrix: | ||
lucee: | ||
- { version: 'light-5.4.6.9', query: '5/all/light' } | ||
- { version: 'light-6.0.3.1', query: '6.0/all/light' } | ||
- { version: 'light-6.1.0.206-SNAPSHOT', query: '6.1/all/light' } | ||
services: | ||
minio: | ||
image: fclairamb/minio-github-actions | ||
ports: | ||
- 9000:9000 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
- name: Cache Maven packages | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.m2 | ||
key: lucee-script-runner-maven-cache | ||
enableCrossOsArchive: true | ||
- name: Cache Lucee files | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/work/_actions/lucee/script-runner/main/lucee-download-cache | ||
key: lucee-downloads | ||
enableCrossOsArchive: true | ||
- name: Build with Ant | ||
run: ant -noinput -verbose -buildfile build.xml | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: image-lex | ||
path: dist/*.lex | ||
- name: Checkout Lucee | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: lucee/lucee | ||
path: lucee | ||
- name: Run Lucee Test Suite (testFilter="image") | ||
uses: lucee/script-runner@main | ||
with: | ||
webroot: ${{ github.workspace }}/lucee/test | ||
execute: /bootstrap-tests.cfm | ||
luceeVersion: ${{ env.luceeVersion }} | ||
luceeVersionQuery: ${{ env.luceeVersionQuery }} | ||
extensionDir: ${{ github.workspace }}/dist | ||
env: | ||
testLabels: image | ||
testAdditional: ${{ github.workspace }}/tests | ||
- 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 | ||
run: | | ||
echo "------- Maven Install -------"; | ||
mvn -B -e -f pom.xml clean install | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: image-lex-${{ matrix.lucee.version }} | ||
path: target/*.lex | ||
|
||
- name: Checkout Lucee | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: lucee/lucee | ||
path: lucee | ||
|
||
- 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: image | ||
testAdditional: ${{ github.workspace }}/tests | ||
|
||
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: 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 --settings maven-settings.xml | ||
else | ||
echo "------- Maven Deploy release on ${{ github.event_name }} -------"; | ||
mvn -B -e -f pom.xml clean deploy -DperformRelease=true --settings maven-settings.xml | ||
fi |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> | ||
<pluginGroups></pluginGroups> | ||
<proxies></proxies> | ||
<servers> | ||
<server> | ||
<id>ossrh</id> | ||
<username>${env.MAVEN_USERNAME}</username> | ||
<password>${env.MAVEN_PASSWORD}</password> | ||
</server> | ||
</servers> | ||
<mirrors></mirrors> | ||
<profiles> | ||
<profile> | ||
<id>ossrh</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<properties> | ||
<gpg.executable>gpg2</gpg.executable> | ||
<gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase> | ||
</properties> | ||
</profile> | ||
</profiles> | ||
</settings> |
Oops, something went wrong.