-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into LDEV-4396-ArrayIndexOutOfBoundsException
- Loading branch information
Showing
27 changed files
with
137 additions
and
20 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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# 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 - Lucee 5.4 | ||
|
||
on: [push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
services: | ||
redis: | ||
# Docker Hub image | ||
image: redis | ||
# Set health checks to wait until redis has started | ||
options: >- | ||
--health-cmd "redis-cli ping" | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
ports: | ||
# Maps port 6379 on service container to the host | ||
- 6379:6379 | ||
env: | ||
luceeVersion: light-5.4.3.2 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '11' | ||
distribution: 'temurin' | ||
- name: Cache Maven packages | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.m2 | ||
key: lucee-script-runner-maven-cache | ||
- name: Cache Lucee files | ||
uses: actions/cache@v3 | ||
with: | ||
path: _actions/lucee/script-runner/main/lucee-download-cache | ||
key: lucee-downloads-${{ env.luceeVersion }} | ||
restore-keys: | | ||
lucee-downloads | ||
- name: Build with Ant | ||
run: ant -noinput -verbose -buildfile build.xml | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: redis-lex | ||
path: dist/*.lex | ||
- name: Checkout Lucee | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: lucee/lucee | ||
path: lucee | ||
- name: Run Lucee Test Suite, labels="redis" | ||
uses: lucee/script-runner@main | ||
with: | ||
webroot: ${{ github.workspace }}/lucee/test | ||
execute: /bootstrap-tests.cfm | ||
luceeVersion: ${{ env.luceeVersion }} | ||
extensionDir: ${{ github.workspace }}/dist | ||
extensions: | ||
env: | ||
testLabels: redis | ||
testAdditional: ${{ github.workspace }}/tests | ||
REDIS_PORT: 6379 | ||
REDIS_SERVER: localhost |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#Build Number for ANT. Do not edit! | ||
#Fri Dec 16 09:13:01 CET 2022 | ||
build.number=49 | ||
#Fri Dec 15 16:39:37 CET 2023 | ||
build.number=57 |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+73.8 KB
source/java/lib/com.fasterxml.jackson.core.jackson-annotations-2.15.0.jar
Binary file not shown.
Binary file removed
BIN
-45.9 KB
source/java/lib/com.fasterxml.jackson.core.jackson-annotations-2.6.0.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.54 MB
source/java/lib/com.fasterxml.jackson.core.jackson-databind-2.15.0.jar
Binary file not shown.
Binary file removed
BIN
-1.11 MB
source/java/lib/com.fasterxml.jackson.core.jackson-databind-2.6.7.3.jar
Binary file not shown.
Binary file removed
BIN
-47.3 KB
source/java/lib/com.fasterxml.jackson.dataformat.jackson-dataformat-2.6.7.jar
Binary file not shown.
Binary file added
BIN
+68 KB
source/java/lib/com.fasterxml.jackson.dataformat.jackson-dataformat-cbor-2.15.0.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.21 MB
source/java/lib/org.lucee.aws-java-sdk-secretsmanager-all-1.12.456.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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