File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed
src/SIL.XForge.Scripture/ClientApp/e2e Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,6 @@ name: E2E Tests
2
2
permissions : {}
3
3
4
4
on :
5
- pull_request :
6
- branches :
7
- - " e2e/**"
8
5
merge_group :
9
6
workflow_dispatch :
10
7
schedule :
@@ -487,6 +484,8 @@ jobs:
487
484
if : always()
488
485
with :
489
486
name : e2e-test-results
490
- path : ./src/SIL.XForge.Scripture/ClientApp/e2e/test_output/ci_e2e_test_results/*.zip
491
- # Don't fail if no zip files are found
487
+ path : |
488
+ ./src/SIL.XForge.Scripture/ClientApp/e2e/test_output/ci_e2e_test_results/*.zip
489
+ ./src/SIL.XForge.Scripture/ClientApp/e2e/test_output/ci_e2e_test_results/*.txt
490
+ # Don't fail if no files are found
492
491
if-no-files-found : ignore
Original file line number Diff line number Diff line change @@ -39,11 +39,10 @@ function shutDownServer() {
39
39
kill -KILL " ${pid} " 2> /dev/null
40
40
}
41
41
42
- DOTNET_LOG=" "
43
-
44
42
function startServer() {
45
43
cd " ${SCRIPT_DIR} /../.."
46
- DOTNET_LOG=" $( mktemp) "
44
+ mkdir -p ./ClientApp/e2e/test_output/ci_e2e_test_results
45
+ DOTNET_LOG=" ./ClientApp/e2e/test_output/ci_e2e_test_results/dotnet.txt"
47
46
output " Logging dotnet output to ${DOTNET_LOG} "
48
47
export ASPNETCORE_ENVIRONMENT=" Development"
49
48
nohup dotnet run & > " ${DOTNET_LOG} " &
You can’t perform that action at this time.
0 commit comments