CI: disabled test tracks completely by commenting out

This commit is contained in:
mahee96
2026-02-22 07:29:56 +05:30
parent d45803a7cc
commit 0062374d32

View File

@@ -67,26 +67,27 @@ jobs:
bundle_id_suffix: ${{ inputs.bundle_id_suffix }} bundle_id_suffix: ${{ inputs.bundle_id_suffix }}
secrets: inherit secrets: inherit
tests-build: # tests-build:
if: ${{ vars.ENABLE_TESTS == '1' && vars.ENABLE_TESTS_BUILD == '1' }} # if: ${{ vars.ENABLE_TESTS == '1' && vars.ENABLE_TESTS_BUILD == '1' }}
needs: shared # needs: shared
uses: ./.github/workflows/sidestore-tests-build.yml # uses: ./.github/workflows/sidestore-tests-build.yml
with: # with:
release_tag: ${{ inputs.release_tag }} # release_tag: ${{ inputs.release_tag }}
short_commit: ${{ needs.shared.outputs.short-commit }} # short_commit: ${{ needs.shared.outputs.short-commit }}
secrets: inherit # secrets: inherit
tests-run: # tests-run:
if: ${{ vars.ENABLE_TESTS == '1' && vars.ENABLE_TESTS_RUN == '1' }} # if: ${{ vars.ENABLE_TESTS == '1' && vars.ENABLE_TESTS_RUN == '1' }}
needs: [shared, tests-build] # needs: [shared, tests-build]
uses: ./.github/workflows/sidestore-tests-run.yml # uses: ./.github/workflows/sidestore-tests-run.yml
with: # with:
release_tag: ${{ inputs.release_tag }} # release_tag: ${{ inputs.release_tag }}
short_commit: ${{ needs.shared.outputs.short-commit }} # short_commit: ${{ needs.shared.outputs.short-commit }}
secrets: inherit # secrets: inherit
deploy: deploy:
needs: [shared, build, tests-build, tests-run] # Keep tests-run in needs # needs: [shared, build, tests-build, tests-run] # Keep tests-run in needs
needs: [shared, build] # Keep tests-run in needs
if: ${{ always() && (needs.tests-run.result == 'skipped' || needs.tests-run.result == 'success') }} if: ${{ always() && (needs.tests-run.result == 'skipped' || needs.tests-run.result == 'success') }}
uses: ./.github/workflows/sidestore-deploy.yml uses: ./.github/workflows/sidestore-deploy.yml
with: with: