Skip to content

Commit c350c7b

Browse files
committed
Add support for boxlang@1 in test matrix and create server configuration
1 parent 927d227 commit c350c7b

2 files changed

Lines changed: 38 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,17 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
cfengine: [ "lucee@5" ]
21+
cfengine: [ "lucee@5", "boxlang@1" ]
2222
coldboxVersion: [ "^6.0.0", "^7.0.0" ]
2323
experimental: [ false ]
2424
# Here we tests all engines against ColdBox@BE
2525
include:
2626
- coldboxVersion: "be"
2727
cfengine: "lucee@5"
2828
experimental: true
29+
- coldboxVersion: "be"
30+
cfengine: "boxlang@1"
31+
experimental: true
2932
steps:
3033
- name: Checkout Repository
3134
uses: actions/checkout@v3

server-boxlang@1.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name":"cbstorages-boxlang@1",
3+
"app":{
4+
"serverHomeDirectory":".engine/boxlang",
5+
"cfengine":"boxlang@1"
6+
},
7+
"web":{
8+
"http":{
9+
"port":"60299"
10+
},
11+
"rewrites":{
12+
"enable": true
13+
},
14+
"webroot": "test-harness",
15+
"aliases":{
16+
"/moduleroot/cbSSO":"../"
17+
}
18+
},
19+
"JVM":{
20+
"heapSize":"768",
21+
"javaVersion":"openjdk21_jre",
22+
"args":"-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8888"
23+
},
24+
"openBrowser":"false",
25+
"cfconfig":{
26+
"file":".cfconfig.json"
27+
},
28+
"env":{
29+
"BOXLANG_DEBUG":true
30+
},
31+
"scripts":{
32+
"onServerInitialInstall":"install bx-esapi,bx-compat-cfml --noSave"
33+
}
34+
}

0 commit comments

Comments
 (0)