File tree Expand file tree Collapse file tree 3 files changed +4
-8
lines changed
Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 1515# =============================================================================
1616release_validation_task :
1717 name : " E2E Release Validation"
18- only_if : $CIRRUS_TAG =~ 'v.*' || $CIRRUS_BRANCH == 'main'
18+ only_if : $CIRRUS_CRON != '' # manual cron only, disabled for push/release
1919 macos_instance :
2020 image : ghcr.io/cirruslabs/macos-sequoia-base:latest
2121 install_deps_script :
@@ -37,7 +37,7 @@ release_validation_task:
3737
3838full_journey_task :
3939 name : " E2E Journey Tests"
40- only_if : $CIRRUS_TAG =~ 'v.*'
40+ only_if : $CIRRUS_CRON != '' # manual cron only, disabled for push/release
4141 macos_instance :
4242 image : ghcr.io/cirruslabs/macos-sequoia-base:latest
4343 install_deps_script :
@@ -53,7 +53,7 @@ full_journey_task:
5353
5454full_edge_cases_task :
5555 name : " E2E Edge Case Tests"
56- only_if : $CIRRUS_TAG =~ 'v.*'
56+ only_if : $CIRRUS_CRON != '' # manual cron only, disabled for push/release
5757 macos_instance :
5858 image : ghcr.io/cirruslabs/macos-sequoia-base:latest
5959 install_deps_script :
@@ -69,7 +69,7 @@ full_edge_cases_task:
6969
7070full_commands_task :
7171 name : " E2E Command + Interactive Tests"
72- only_if : $CIRRUS_TAG =~ 'v.*'
72+ only_if : $CIRRUS_CRON != '' # manual cron only, disabled for push/release
7373 macos_instance :
7474 image : ghcr.io/cirruslabs/macos-sequoia-base:latest
7575 install_deps_script :
Original file line number Diff line number Diff line change 6767 - name : Integration tests
6868 run : make test-integration
6969
70- - name : E2E tests (safe)
71- run : make test-e2e
72-
7370 - name : Destructive tests
7471 run : make test-destructive
7572
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ test-all:
3636 @echo " Running all tests..."
3737 $(MAKE ) test-unit
3838 $(MAKE ) test-integration
39- -$(MAKE ) test-e2e
4039 $(MAKE ) test-coverage
4140
4241# =============================================================================
You can’t perform that action at this time.
0 commit comments