chore: Disable integration tests without runners

This commit is contained in:
Krille Fear 2022-07-27 17:33:26 +00:00
parent 88924bc328
commit f9065277fa

View File

@ -64,6 +64,7 @@ integration_test:
- famedly - famedly
- docker - docker
timeout: 20m timeout: 20m
when: manual
# extending the default tests to test the Google-flavored builds # extending the default tests to test the Google-flavored builds
integration_test_google: integration_test_google:
@ -72,6 +73,7 @@ integration_test_google:
- git apply ./scripts/enable-android-google-services.patch - git apply ./scripts/enable-android-google-services.patch
- flutter pub get - flutter pub get
- flutter test integration_test - flutter test integration_test
when: manual
# extending the default tests to use Conduit as local homeserver # extending the default tests to use Conduit as local homeserver
integration_test_conduit: integration_test_conduit:
@ -86,6 +88,7 @@ integration_test_conduit:
- scripts/integration-prepare-homeserver.sh - scripts/integration-prepare-homeserver.sh
# ensure the homeserver works # ensure the homeserver works
- curl docker:8008/_matrix/static/ 2> /dev/null | grep "M_NOT_FOUND" 1> /dev/null && echo "Conduit is running!" - curl docker:8008/_matrix/static/ 2> /dev/null | grep "M_NOT_FOUND" 1> /dev/null && echo "Conduit is running!"
when: manual
# extending the default tests to use Dendrite as local homeserver # extending the default tests to use Dendrite as local homeserver
integration_test_dendrite: integration_test_dendrite:
@ -100,6 +103,7 @@ integration_test_dendrite:
- scripts/integration-prepare-homeserver.sh - scripts/integration-prepare-homeserver.sh
# ensure the homeserver works # ensure the homeserver works
- curl docker:8008/_matrix/static/ 2> /dev/null | grep "404 page not found" 1> /dev/null && echo "Dendrite is running!" - curl docker:8008/_matrix/static/ 2> /dev/null | grep "404 page not found" 1> /dev/null && echo "Dendrite is running!"
when: manual
release_mode_launches: release_mode_launches:
image: registry.gitlab.com/famedly/company/frontend/flutter-dockerimages/integration/stable:${FLUTTER_VERSION} image: registry.gitlab.com/famedly/company/frontend/flutter-dockerimages/integration/stable:${FLUTTER_VERSION}
@ -113,10 +117,7 @@ release_mode_launches:
- famedly - famedly
- docker - docker
timeout: 20m timeout: 20m
rules: when: manual
- changes:
- android/*
- .gitlab-ci.yml
release_mode_launches_google: release_mode_launches_google:
extends: release_mode_launches extends: release_mode_launches