Skip to content

Commit 71fb4d4

Browse files
committed
Disable parallel build for E2E tests in buildtest workflow
1 parent 9dd128c commit 71fb4d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/buildtest.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: Test
7474
run: |
7575
true > skip.log
76-
env K8S_E2E_MINIKUBE=1 dotnet test tests/E2E.Tests --logger "SkipTestLogger;file=$PWD/skip.log"
76+
env K8S_E2E_MINIKUBE=1 dotnet test tests/E2E.Tests --logger "SkipTestLogger;file=$PWD/skip.log" -p:BuildInParallel=false
7777
if [ -s skip.log ]; then
7878
cat skip.log
7979
echo "CASES MUST NOT BE SKIPPED"
@@ -82,7 +82,7 @@ jobs:
8282
- name: AOT Test
8383
run: |
8484
true > skip.log
85-
env K8S_E2E_MINIKUBE=1 dotnet test tests/E2E.Aot.Tests --logger "SkipTestLogger;file=$PWD/skip.log"
85+
env K8S_E2E_MINIKUBE=1 dotnet test tests/E2E.Aot.Tests --logger "SkipTestLogger;file=$PWD/skip.log" -p:BuildInParallel=false
8686
if [ -s skip.log ]; then
8787
cat skip.log
8888
echo "CASES MUST NOT BE SKIPPED"

0 commit comments

Comments
 (0)