Skip to content

Commit

Permalink
Move timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-el committed May 21, 2024
1 parent 0adb58c commit e53a7ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/bundle_with_dakota_caller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ jobs:
echo "NEEDS_REBUILD=false" >> $GITHUB_OUTPUT

build_macos_wheels:
timeout-minutes: 45
needs: build-settings
if: ${{ needs.build-settings.outputs.NEEDS_REBUILD == 'true' }}
uses: ./.github/workflows/bundle_with_dakota_macos.yml
Expand All @@ -61,7 +60,6 @@ jobs:
secrets: inherit

build_linux_wheels:
timeout-minutes: 45
if: ${{ needs.build-settings.outputs.NEEDS_REBUILD == 'true' }}
needs: build-settings
uses: ./.github/workflows/bundle_with_dakota_linux.yml
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/bundle_with_dakota_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
path: ./deps_build

- name: Build Boost & Dakota
timeout-minutes: 75
if: steps.cache-package-check.outputs.cache-hit != 'true'
uses: docker://quay.io/pypa/manylinux2014_x86_64
env:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/bundle_with_dakota_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ jobs:
python -m pip install numpy
- name: Build needed boost libraries
timeout-minutes: 30
if: steps.cache-package.outputs.cache-hit != 'true'
run: |
python --version
Expand All @@ -118,6 +119,7 @@ jobs:
./b2 install -j4 -a cxxflags="-std=c++17" --prefix=${GITHUB_WORKSPACE}/${INSTALL_DIR}
- name: Build dakota
timeout-minutes: 45
if: steps.cache-package.outputs.cache-hit != 'true'
run: |
python --version
Expand Down

0 comments on commit e53a7ab

Please sign in to comment.