Skip to content

Commit

Permalink
Create zacs-admin-extensions.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jul 5, 2024
1 parent 274c65b commit f89370a
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/zacs-admin-extensions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Check Zac's admin Extensions

on:
workflow_dispatch:
workflow_call:

jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
luceeVersion:
[
6.0/snapshot/light,
6.1/snapshot/light,
6.1.0/snapshot/light,
6.2/snapshot/light
]
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
uses: actions/cache@v4
with:
path: ~/.m2
key: maven-cache
- name: Cache Lucee files
if: always()
uses: actions/cache@v4
with:
path: /home/runner/work/_actions/lucee/script-runner/main/lucee-download-cache
key: lucee-downloads

- name: Check Zac's admin plugins compile as they often catch regressions
uses: lucee/script-runner@main
with:
webroot: ${{ github.workspace }}/custom/default-cfconfig
execute: /compareDefault.cfm
luceeVersionQuery: ${{ matrix.luceeVersion }}
compile: true
extensions: 91AF5D75-8CEF-4510-A170240C401F5FBA,A345C8CB-04CC-4D2B-93D50471D5105D83 # log viewer, performance analyzer

0 comments on commit f89370a

Please sign in to comment.