From ec64299976a9d1b3bc9c03ed88d68ce945f56bf1 Mon Sep 17 00:00:00 2001 From: dotasek Date: Tue, 9 May 2023 16:41:42 -0400 Subject: [PATCH] Update smoke-tests.yml Wait longer just in case Maybe don't kill the jetty server? --- .github/workflows/smoke-tests.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/smoke-tests.yml b/.github/workflows/smoke-tests.yml index a07e1c1..c0f90c3 100644 --- a/.github/workflows/smoke-tests.yml +++ b/.github/workflows/smoke-tests.yml @@ -35,9 +35,8 @@ jobs: - name: Start server with jetty run: | mvn jetty:run & export JPA_PROCESS=$! - sleep 45 + sleep 60 - name: Execute smoke tests run: ./ijhttp/ijhttp ./src/test/smoketest/plain_server.http --env-file ./src/test/smoketest/http-client.env.json --env default - - name: Stop server - run: kill $JPA_PROCESS +