Skip to content

Commit

Permalink
ahhh
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jun 8, 2024
1 parent 92c97f5 commit 556374b
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions .github/workflows/spreadsheet-cfml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,23 @@ jobs:
run: |
cp -R _custom/custom/spreadsheet-cfml .
rm -rf _custom
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'temurin'
- name: Install the ortus security key
run: curl -fsSl https://downloads.ortussolutions.com/debs/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/ortussolutions.gpg > /dev/null

- name: Add the commandbox source
run: echo "deb [signed-by=/usr/share/keyrings/ortussolutions.gpg] https://downloads.ortussolutions.com/debs/noarch /" | sudo tee /etc/apt/sources.list.d/commandbox.list

- name: Update apt and install commandbox
run: sudo apt-get update && sudo apt-get install apt-transport-https commandbox

- name: Install dependencies
run: box install -CommandBox_home=${{ github.workspace }}/.CommandBox verbose=true
- name: Store installed webroot for matrix steps
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -59,20 +76,9 @@ jobs:
with:
path: /home/runner/work/_actions/lucee/script-runner/main/lucee-download-cache
key: lucee-downloads
- name: Install the ortus security key
run: curl -fsSl https://downloads.ortussolutions.com/debs/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/ortussolutions.gpg > /dev/null

- name: Add the commandbox source
run: echo "deb [signed-by=/usr/share/keyrings/ortussolutions.gpg] https://downloads.ortussolutions.com/debs/noarch /" | sudo tee /etc/apt/sources.list.d/commandbox.list

- name: Update apt and install commandbox
run: sudo apt-get update && sudo apt-get install apt-transport-https commandbox

- name: Install dependencies
run: box install
- name: Run Test Suite
uses: lucee/script-runner@main
with:
webroot: ${{ github.workspace }}/test
execute: /index.cfm
webroot: ${{ github.workspace }}/
execute: /test/index.cfm
luceeVersionQuery: ${{ matrix.luceeVersion }}

0 comments on commit 556374b

Please sign in to comment.