From 0d3836baf2b35b9720e61aa53cd86e7d5cd9976d Mon Sep 17 00:00:00 2001 From: mhucka Date: Thu, 2 Oct 2025 04:06:08 +0000 Subject: [PATCH] Increase workflow timeouts Some of the workflows are taking unexpectedly long to run on GitHub. (It appears to have to do with dependency installation, and not qsim itself.) We may as well increase the timeouts; doing so does not really harm our status checks. --- .github/workflows/_build_wheels.yaml | 2 +- .github/workflows/ci_build_library.yaml | 2 +- .github/workflows/ci_docker_tests.yaml | 2 +- .github/workflows/ci_hardware_options.yaml | 2 +- .github/workflows/osv-scanner.yaml | 2 +- .github/workflows/release_wheels.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/_build_wheels.yaml b/.github/workflows/_build_wheels.yaml index 259f5a58f..1d07d8c65 100644 --- a/.github/workflows/_build_wheels.yaml +++ b/.github/workflows/_build_wheels.yaml @@ -49,7 +49,7 @@ jobs: build-wheels: name: Build on ${{matrix.conf.os}}/${{matrix.conf.arch}} runs-on: ${{matrix.conf.os}} - timeout-minutes: 30 + timeout-minutes: 60 strategy: fail-fast: false matrix: diff --git a/.github/workflows/ci_build_library.yaml b/.github/workflows/ci_build_library.yaml index fd98ab1fd..1761dee06 100644 --- a/.github/workflows/ci_build_library.yaml +++ b/.github/workflows/ci_build_library.yaml @@ -53,7 +53,7 @@ jobs: needs: find-changes runs-on: ${{matrix.conf.os}} continue-on-error: true - timeout-minutes: 30 + timeout-minutes: 60 strategy: fail-fast: false matrix: diff --git a/.github/workflows/ci_docker_tests.yaml b/.github/workflows/ci_docker_tests.yaml index fca6a6737..265d0c7d3 100644 --- a/.github/workflows/ci_docker_tests.yaml +++ b/.github/workflows/ci_docker_tests.yaml @@ -53,7 +53,7 @@ jobs: needs: find-changes runs-on: ubuntu-24.04 continue-on-error: true - timeout-minutes: 30 + timeout-minutes: 60 env: # The next environment variable is used by Docker. BUILDKIT_PROGRESS: ${{inputs.debug && 'plain' || ''}} diff --git a/.github/workflows/ci_hardware_options.yaml b/.github/workflows/ci_hardware_options.yaml index 18612b47a..c85ecae33 100644 --- a/.github/workflows/ci_hardware_options.yaml +++ b/.github/workflows/ci_hardware_options.yaml @@ -53,7 +53,7 @@ jobs: needs: find-changes runs-on: ubuntu-24.04 continue-on-error: true - timeout-minutes: 30 + timeout-minutes: 60 strategy: matrix: # Hardware optimizers. diff --git a/.github/workflows/osv-scanner.yaml b/.github/workflows/osv-scanner.yaml index 23286e000..d9091deed 100644 --- a/.github/workflows/osv-scanner.yaml +++ b/.github/workflows/osv-scanner.yaml @@ -59,7 +59,7 @@ jobs: if: github.repository_owner == 'quantumlib' name: OSV scanner runs-on: ubuntu-24.04 - timeout-minutes: 15 + timeout-minutes: 30 permissions: # Needed to upload the results to code-scanning dashboard: security-events: write diff --git a/.github/workflows/release_wheels.yml b/.github/workflows/release_wheels.yml index a1888699f..2f7582100 100644 --- a/.github/workflows/release_wheels.yml +++ b/.github/workflows/release_wheels.yml @@ -41,7 +41,7 @@ jobs: name: Publish wheels needs: build-wheels runs-on: ubuntu-24.04 - timeout-minutes: 30 + timeout-minutes: 60 steps: - name: Retrieve saved wheels uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0