Skip to content

Commit 7be75c4

Browse files
committed
tmp: disable test cache everywhere
1 parent 83301c4 commit 7be75c4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ jobs:
384384
fi
385385
export TS_DEBUG_DISCO=true
386386
TEST_RETRIES="--rerun-fails=2"
387-
if [ "${{ github.ref }}" == "refs/heads/hugodutka/disable-test-retries-on-main" ]; then
387+
if [ true ]; then
388388
# on main, run tests without retries
389389
TEST_RETRIES=""
390390
fi
@@ -564,7 +564,7 @@ jobs:
564564
fi
565565
566566
TEST_RETRIES="--rerun-fails=2 --rerun-fails-max-failures=50"
567-
if [ "${{ github.ref }}" == "refs/heads/hugodutka/disable-test-retries-on-main" ]; then
567+
if [ true ]; then
568568
# on main, run tests without retries
569569
TEST_RETRIES=""
570570
fi
@@ -649,7 +649,7 @@ jobs:
649649
TS_DEBUG_DISCO: "true"
650650
run: |
651651
export TEST_RETRIES="2"
652-
if [ "${{ github.ref }}" == "refs/heads/hugodutka/disable-test-retries-on-main" ]; then
652+
if [ true ]; then
653653
# on main, run tests without retries
654654
export TEST_RETRIES=""
655655
fi
@@ -703,7 +703,7 @@ jobs:
703703
- name: Run Tests
704704
run: |
705705
TEST_RETRIES="--rerun-fails=2 --rerun-fails-abort-on-data-race"
706-
if [ "${{ github.ref }}" == "refs/heads/hugodutka/disable-test-retries-on-main" ]; then
706+
if [ true ]; then
707707
# on main, run tests without retries
708708
TEST_RETRIES=""
709709
fi
@@ -759,7 +759,7 @@ jobs:
759759
POSTGRES_VERSION: "17"
760760
run: |
761761
TEST_RETRIES="--rerun-fails=2 --rerun-fails-abort-on-data-race"
762-
if [ "${{ github.ref }}" == "refs/heads/hugodutka/disable-test-retries-on-main" ]; then
762+
if [ true ]; then
763763
# on main, run tests without retries
764764
TEST_RETRIES=""
765765
fi
@@ -892,7 +892,7 @@ jobs:
892892
# Run all of the tests with a premium license
893893
- run: |
894894
# Only retry on PRs, not on main
895-
if [ "${{ github.ref }}" != "refs/heads/hugodutka/disable-test-retries-on-main" ]; then
895+
if [ false ]; then
896896
export CODER_E2E_TEST_RETRIES=2
897897
fi
898898
pnpm playwright:test --forbid-only --workers 1

0 commit comments

Comments
 (0)