-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some variable names have changed to support the certification. You shouldn't see any problems unless you have custom QueryBuilders that are extending from the built-in models. BREAKING CHANGE: Internal variable name changes
- Loading branch information
Showing
29 changed files
with
464 additions
and
202 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 |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
cfengine: ["lucee@5", "lucee@be", "adobe@2018", "adobe@2021", "adobe@be"] | ||
cfengine: ["lucee@5", "lucee@be", "adobe@2021", "adobe@2023", "adobe@be", "boxlang@be"] | ||
javaVersion: ["openjdk8", "openjdk11"] | ||
fullNull: ["true", "false"] | ||
steps: | ||
|
@@ -27,12 +27,22 @@ jobs: | |
- name: Set Up CommandBox | ||
uses: elpete/[email protected] | ||
|
||
- name: Install CommandBox-BoxLang | ||
run: box install commandbox-boxlang | ||
|
||
- name: Install dependencies | ||
run: | | ||
box install | ||
- name: Start server | ||
run: box server start cfengine=${{ matrix.cfengine }} javaVersion=${{ matrix.javaVersion }} --noSaveSettings | ||
run: | | ||
if [[ "${{ matrix.cfengine }}" == *"boxlang"* ]] ; then | ||
box server start cfengine=${{ matrix.cfengine }} javaVersion=openjdk21_jdk | ||
box run-script bx-modules:install | ||
box server restart | ||
else | ||
box server start cfengine=${{ matrix.cfengine }} javaVersion=${{ matrix.javaVersion }} | ||
fi | ||
- name: Run TestBox Tests | ||
env: | ||
|
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
cfengine: ["lucee@5", "adobe@2018", "adobe@2021"] | ||
cfengine: ["lucee@5", "adobe@2021", "adobe@2023", "boxlang@be"] | ||
fullNull: ["true", "false"] | ||
steps: | ||
- name: Checkout Repository | ||
|
@@ -34,12 +34,22 @@ jobs: | |
- name: Set Up CommandBox | ||
uses: elpete/[email protected] | ||
|
||
- name: Install CommandBox-BoxLang | ||
run: box install commandbox-boxlang | ||
|
||
- name: Install dependencies | ||
run: | | ||
box install | ||
- name: Start server | ||
run: box server start cfengine=${{ matrix.cfengine }} --noSaveSettings | ||
run: | | ||
if [[ "${{ matrix.cfengine }}" == *"boxlang"* ]] ; then | ||
box server start cfengine=${{ matrix.cfengine }} javaVersion=openjdk21_jdk | ||
box run-script bx-modules:install | ||
box server restart | ||
else | ||
box server start cfengine=${{ matrix.cfengine }} | ||
fi | ||
- name: Run TestBox Tests | ||
env: | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
cfengine: ["lucee@5", "adobe@2018", "adobe@2021"] | ||
cfengine: ["lucee@5", "adobe@2021", "adobe@2023", "boxlang@be"] | ||
fullNull: ["true", "false"] | ||
steps: | ||
- name: Checkout Repository | ||
|
@@ -28,12 +28,22 @@ jobs: | |
- name: Set Up CommandBox | ||
uses: elpete/[email protected] | ||
|
||
- name: Install CommandBox-BoxLang | ||
run: box install commandbox-boxlang | ||
|
||
- name: Install dependencies | ||
run: | | ||
box install | ||
- name: Start server | ||
run: box server start cfengine=${{ matrix.cfengine }} --noSaveSettings | ||
run: | | ||
if [[ "${{ matrix.cfengine }}" == *"boxlang"* ]] ; then | ||
box server start cfengine=${{ matrix.cfengine }} javaVersion=openjdk21_jdk | ||
box run-script bx-modules:install | ||
box server restart | ||
else | ||
box server start cfengine=${{ matrix.cfengine }} | ||
fi | ||
- name: Run TestBox Tests | ||
env: | ||
|
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
cfengine: ["lucee@5", "adobe@2018", "adobe@2021"] | ||
cfengine: ["lucee@5", "adobe@2021", "adobe@2023", "boxlang@be"] | ||
fullNull: ["true", "false"] | ||
steps: | ||
- name: Checkout Repository | ||
|
@@ -29,12 +29,22 @@ jobs: | |
- name: Set Up CommandBox | ||
uses: elpete/[email protected] | ||
|
||
- name: Install CommandBox-BoxLang | ||
run: box install commandbox-boxlang | ||
|
||
- name: Install dependencies | ||
run: | | ||
box install | ||
- name: Start server | ||
run: box server start cfengine=${{ matrix.cfengine }} --noSaveSettings | ||
run: | | ||
if [[ "${{ matrix.cfengine }}" == *"boxlang"* ]] ; then | ||
box server start cfengine=${{ matrix.cfengine }} javaVersion=openjdk21_jdk | ||
box run-script bx-modules:install | ||
box server restart | ||
else | ||
box server start cfengine=${{ matrix.cfengine }} | ||
fi | ||
- name: Run TestBox Tests | ||
env: | ||
|
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
Oops, something went wrong.