diff --git a/.github/workflows/accessibility_tests.yml b/.github/workflows/accessibility_tests.yml index cfbe22155..eeb68ed12 100644 --- a/.github/workflows/accessibility_tests.yml +++ b/.github/workflows/accessibility_tests.yml @@ -24,7 +24,7 @@ jobs: run: source ci_scripts/ci_common.sh && setup_github_actions_environment - name: Run tests - run: swift run tools ci accessibility-tests + run: swift run -q tools ci accessibility-tests - name: Archive artifacts uses: actions/upload-artifact@v7 diff --git a/.github/workflows/automatic-calendar-version.yml b/.github/workflows/automatic-calendar-version.yml index 7e9ed32c1..b4d97723a 100644 --- a/.github/workflows/automatic-calendar-version.yml +++ b/.github/workflows/automatic-calendar-version.yml @@ -25,7 +25,7 @@ jobs: source ci_scripts/ci_common.sh && setup_github_actions_environment - name: Bump the CalVer if needed - run: swift run tools bump-calendar-version + run: swift run -q tools bump-calendar-version - name: Create a PR for the new version uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0 diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 7fdfe0420..998e1f084 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -25,7 +25,7 @@ jobs: source ci_scripts/ci_common.sh && setup_github_actions_environment - name: Run tests - run: swift run tools ci integration-tests + run: swift run -q tools ci integration-tests env: INTEGRATION_TESTS_HOST: ${{ secrets.INTEGRATION_TESTS_HOST }} INTEGRATION_TESTS_USERNAME: ${{ secrets.INTEGRATION_TESTS_USERNAME }} diff --git a/.github/workflows/translations-pr.yml b/.github/workflows/translations-pr.yml index 761457826..08793e961 100644 --- a/.github/workflows/translations-pr.yml +++ b/.github/workflows/translations-pr.yml @@ -21,13 +21,13 @@ jobs: source ci_scripts/ci_common.sh && setup_github_actions_translations_environment - name: Download All Translations - run: swift run tools download-strings --all-languages + run: swift run -q tools download-strings --all-languages - name: Verify Translations - run: swift run tools locheck + run: swift run -q tools locheck - name: SAS Translations - run: swift run tools generate-sas + run: swift run -q tools generate-sas - name: Create PR for Translations uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0 diff --git a/.github/workflows/ui_tests.yml b/.github/workflows/ui_tests.yml index 9187b714e..8678411e3 100644 --- a/.github/workflows/ui_tests.yml +++ b/.github/workflows/ui_tests.yml @@ -37,7 +37,7 @@ jobs: if [[ -n "${{ github.event.inputs.test_name }}" ]]; then args+=( --test-name "${{ github.event.inputs.test_name }}") fi - swift run tools ci ui-tests "${args[@]}" + swift run -q tools ci ui-tests "${args[@]}" - name: Archive artifacts uses: actions/upload-artifact@v7 diff --git a/.github/workflows/unit_tests_enterprise.yml b/.github/workflows/unit_tests_enterprise.yml index 99d179a63..40e9f35e4 100644 --- a/.github/workflows/unit_tests_enterprise.yml +++ b/.github/workflows/unit_tests_enterprise.yml @@ -32,7 +32,7 @@ jobs: run: source ci_scripts/ci_common.sh && setup_github_actions_environment - name: Configure Enterprise - run: swift run pipeline configure-element-pro + run: swift run -q pipeline configure-element-pro - name: Run tests run: swift run -q tools ci unit-tests --skip-previews