Move all scripts from buildScr to scripts directory

MAILANDR-425
This commit is contained in:
Marino Meneghel
2023-03-10 15:31:01 +01:00
parent 1254c78a08
commit 225168cef8
8 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ cache: &cache
- small
before_script:
- bundle install
- ./buildSrc/setup_firebase_gcloud.sh
- ./scripts/setup_firebase_gcloud.sh
cache:
*cache
@@ -38,7 +38,7 @@ cache: &cache
before_script:
- bundle install
- echo $SERVICE_ACCOUNT_MAIL > /tmp/service-account.json
- ./buildSrc/generate_fad_release_notes.sh /tmp/release_notes.txt
- ./scripts/generate_fad_release_notes.sh /tmp/release_notes.txt
rules:
- if: $CI_PIPELINE_SOURCE == "parent_pipeline"
when: never
+6 -6
View File
@@ -41,7 +41,7 @@ platform :android do
desc "Bump the version code"
lane :bumpAppVersion do
sh("python3 ../buildSrc/bump_version.py")
sh("python3 ../scripts/bump_version.py")
end
desc "Runs Unit Tests"
@@ -51,22 +51,22 @@ platform :android do
desc "Runs Instrumented Tests on Firebase"
lane :instrumentedTest do
sh("../buildSrc/run_firebase_instrumentation_tests.sh")
sh("../scripts/run_firebase_instrumentation_tests.sh")
end
desc "Runs Smoke Tests Suite on Firebase Test lab"
lane :smokeTest do
sh("../buildSrc/run_firebase_ui_tests.sh")
sh("../scripts/run_firebase_ui_tests.sh")
end
desc "Runs extended Smoke Tests Suite on Firebase Test lab"
lane :smokeTestExtended do
sh("../buildSrc/run_firebase_ui_tests.sh extended_test")
sh("../scripts/run_firebase_ui_tests.sh extended_test")
end
desc "Runs all UI tests on a wide set of devices on Firebase Test lab"
lane :fullRegressionTest do
sh("../buildSrc/run_firebase_ui_tests.sh full_test")
sh("../scripts/run_firebase_ui_tests.sh full_test")
end
desc "Generate test coverage report based on the last test run"
@@ -112,7 +112,7 @@ platform :android do
desc "Tag commit with release version name and code"
lane :tagRelease do
sh("python3 ../buildSrc/tag_release.py")
sh("python3 ../scripts/tag_release.py")
end
desc "Submit a new Closed-Testing Build in Alpha-v6 track to Play Store"