Skip to content
Snippets Groups Projects
Verified Commit 69efa180 authored by Burak Hançerli's avatar Burak Hançerli :headphones:
Browse files

chore: disabling the tests for a while

parent df0d7296
No related branches found
No related tags found
1 merge request!62fix: udp broadcast timer was not started
Pipeline #77391 passed
...@@ -5,9 +5,9 @@ create-packages: ...@@ -5,9 +5,9 @@ create-packages:
rules: rules:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
needs: needs:
# - job: test-x86_64 - job: test-x86_64
# optional: false optional: false
# artifacts: true artifacts: true
- job: build-android - job: build-android
optional: false optional: false
artifacts: true artifacts: true
......
...@@ -8,12 +8,17 @@ test-x86_64: ...@@ -8,12 +8,17 @@ test-x86_64:
- job: build-android - job: build-android
optional: false optional: false
artifacts: true artifacts: true
rules:
- if: ${QDS_CI_SKIP_TESTS} == "false"
variables: variables:
GIT_SUBMODULE_STRATEGY: none GIT_SUBMODULE_STRATEGY: none
QDS_CI_JOB_TEST_RESULTS_PATH: ${CI_PROJECT_DIR}/test QDS_CI_JOB_TEST_RESULTS_PATH: ${CI_PROJECT_DIR}/test
script: script:
- |
if [[ ${QDS_CI_SKIP_TESTS} == "false" ]]; then
echo "Running tests";
else
echo "Skipping tests";
exit 0;
fi
- | - |
export ANDROID_SDK_ROOT=/opt/android export ANDROID_SDK_ROOT=/opt/android
export PATH=$PATH:${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/ export PATH=$PATH:${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment