chore: Store server logs and set max threads to 1 for CTH

This commit is contained in:
Joachim Van Herwegen 2022-02-03 10:37:23 +01:00
parent ab1bca5a76
commit d44f7117f3
2 changed files with 7 additions and 1 deletions

View File

@ -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
@ -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

View File

@ -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