From 1e1b8949f138966ca070c76bd9e5a2a868b807bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?JN=20Hern=C3=A1ndez?= Date: Tue, 14 May 2024 09:37:30 -0600 Subject: [PATCH] Set server script output Need to discart output of the server script in order to fully run the process in the background. This may need revision as we would want to capture script failures, but for now, testing running the server in the background. This discard will prevent the process from being suspended when sent to background. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2885bca..35ed29f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,9 @@ jobs: run: ./scripts/setup - name: Run server - run: ./scripts/server & SERVER_PID=$! + run: | + ./scripts/server >/dev/null 2>&1 & + SERVER_PID=$! - name: Run test script run: ./scripts/test