Skip to content

Commit

Permalink
more debug
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jun 28, 2024
1 parent 1ce4683 commit 79b7326
Show file tree
Hide file tree
Showing 3 changed files with 120 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/admin-password-default.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Check LUCEE_ADMIN_DEFAULT_PASSWORD

on:
workflow_dispatch:
workflow_call:

jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
luceeVersion:
[
5.4/snapshot/jar,
6.0/snapshot/jar,
6.1/snapshot/jar,
6.1.0/snapshot/jar,
6.2/snapshot/jar,
]
javaVersion: [ 11 ]
env:
luceeVersionQuery: ${{ matrix.luceeVersion }}
compile: ${{ github.event.inputs.compile }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK ${{matrix.javaVersion}}
uses: actions/setup-java@v4
with:
java-version: ${{matrix.javaVersion}}
distribution: "temurin"
- name: Cache Maven packages
if: always()
uses: actions/cache@v4
with:
path: ~/.m2
key: maven-cache
- name: Cache Lucee files
uses: actions/cache@v4
if: always()
with:
path: /home/runner/work/_actions/lucee/script-runner/main/lucee-download-cache
key: lucee-downloads
- name: Load Lucee and extensions with LUCEE_ENABLE_BUNDLE_DOWNLOAD disabled
uses: lucee/script-runner@main
with:
webroot: ${{ github.workspace }}/custom/bundle-test
execute: /index.cfm
luceeVersionQuery: ${{ matrix.luceeVersion }}
env:
LUCEE_CLI_PRINTEXCEPTIONS: TRUE
LUCEE_ENABLE_BUNDLE_DOWNLOAD: FALSE
LUCEE_ADMIN_DEFAULT_PASSWORD: lucee-test
# LUCEE_ADMIN_PASSWORD: lucee-test

56 changes: 56 additions & 0 deletions .github/workflows/admin-password.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Check LUCEE_ADMIN_PASSWORD

on:
workflow_dispatch:
workflow_call:

jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
luceeVersion:
[
5.4/snapshot/jar,
6.0/snapshot/jar,
6.1/snapshot/jar,
6.1.0/snapshot/jar,
6.2/snapshot/jar,
]
javaVersion: [ 11 ]
env:
luceeVersionQuery: ${{ matrix.luceeVersion }}
compile: ${{ github.event.inputs.compile }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK ${{matrix.javaVersion}}
uses: actions/setup-java@v4
with:
java-version: ${{matrix.javaVersion}}
distribution: "temurin"
- name: Cache Maven packages
if: always()
uses: actions/cache@v4
with:
path: ~/.m2
key: maven-cache
- name: Cache Lucee files
uses: actions/cache@v4
if: always()
with:
path: /home/runner/work/_actions/lucee/script-runner/main/lucee-download-cache
key: lucee-downloads
- name: Load Lucee and extensions with LUCEE_ENABLE_BUNDLE_DOWNLOAD disabled
uses: lucee/script-runner@main
with:
webroot: ${{ github.workspace }}/custom/bundle-test
execute: /index.cfm
luceeVersionQuery: ${{ matrix.luceeVersion }}
env:
LUCEE_CLI_PRINTEXCEPTIONS: TRUE
LUCEE_ENABLE_BUNDLE_DOWNLOAD: FALSE
# LUCEE_ADMIN_DEFAULT_PASSWORD: lucee-test
LUCEE_ADMIN_PASSWORD: lucee-test

8 changes: 8 additions & 0 deletions custom/bundle-test/index.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@
*/
adminPassword = "lucee-test";
for ( env in server.system.environment ) {
if ( env contains "LUCEE_ADMIN_" ) {
systemOutput( "ENV VAR #env#: #server.system.environment[ env ]#", true );
} else {
systemOutput( "ENV VAR #env#: ***", true );
}
}
function checkPassword() {
try {
admin action="connect"
Expand Down

0 comments on commit 79b7326

Please sign in to comment.