Skip to content

Commit

Permalink
Change order of operations, add new
Browse files Browse the repository at this point in the history
Discussion with Brad led to discovery that there is an order of things that was not being followed. This is my first try at the new order of things, however tests are still expected to fail at present - the test will at least be set up properly for when it is passing
  • Loading branch information
ddspringle authored May 27, 2024
1 parent b147f56 commit 3894317
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/fw1_boxlang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,21 @@ jobs:
- name: Install boxlang
run: box install commandbox-boxlang

- name: Start the ${{ matrix.engine }} CFML engine
run: box server start cfengine=${{ matrix.engine }} port=8500 openbrowser=false javaVersion=openjdk21_jdk

- name: Install bx-compat
run: box install bx-compat

- name: Install unsafe evaluate (NOTE Remove when evaluate() is removed from TestBox)
run: box install bx-unsafe-evaluate
- name: Stop boxlang after bx-compat install
run: box server stop

- name: Install dependencies
run: box install

- name: Start the ${{ matrix.engine }} CFML engine
- name: Restart boxlang after bx-compat install
run: box server start cfengine=${{ matrix.engine }} port=8500 openbrowser=false javaVersion=openjdk21_jdk

- name: Install dependencies
run: box install

- name: Run test
run: |
testResults="echo $(box testbox run reporter=mintext)";
Expand Down

0 comments on commit 3894317

Please sign in to comment.