Skip to content

Commit

Permalink
chore: Store server logs and set max threads to 1 for CTH
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimvh committed Feb 3, 2022
1 parent ab1bca5 commit d44f711
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install dependencies and run build scripts
run: npm ci
- name: Start the server in the background
run: npm start &
run: npm start > server-output.log &
- name: Create the necessary folders
run: mkdir -p reports/css
- name: Pull the conformance harness docker
Expand Down Expand Up @@ -57,3 +57,8 @@ jobs:
with:
name: ${{ steps.sanitize.outputs.sanitized-branch-name }} reports
path: reports
- name: Save the server output
uses: actions/upload-artifact@v2
with:
name: ${{ steps.sanitize.outputs.sanitized-branch-name }} server output
path: server-output.log
1 change: 1 addition & 0 deletions test/deploy/conformance.env
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ RESOURCE_SERVER_ROOT=http://localhost:3000
TEST_CONTAINER=/alice/
quarkus.log.category."ResultLogger".level=INFO
quarkus.log.category."com.intuit.karate".level=DEBUG
MAXTHREADS=1

0 comments on commit d44f711

Please sign in to comment.