Skip to content

Commit

Permalink
Increase build timeouts (#107)
Browse files Browse the repository at this point in the history
- Increase build timeouts to 60 min (formerly 45 in most workflows)
  • Loading branch information
jrmadsen authored Jul 22, 2022
1 parent d27f22e commit ab4f1e3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/opensuse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
-DOMNITRACE_CI_MPI_RUN_AS_ROOT=ON

- name: Build
timeout-minutes: 45
timeout-minutes: 60
run:
cmake --build build --target all --parallel 2 -- VERBOSE=1

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu-bionic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
python3 -m pip install numpy &&
python3 -m pip install perfetto &&
python3 -m pip install 'cmake==3.16.3' &&
for i in 6 7 8 9; do /opt/conda/envs/py3.${i}/bin/python -m pip install numpy perfetto dataclasses; done
for i in 6 7 8 9 10; do /opt/conda/envs/py3.${i}/bin/python -m pip install numpy perfetto dataclasses; done

- name: Install Kokkos
timeout-minutes: 5
Expand Down Expand Up @@ -86,11 +86,11 @@ jobs:
-DOMNITRACE_USE_HIP=OFF
-DOMNITRACE_USE_PYTHON=ON
-DOMNITRACE_PYTHON_PREFIX=/opt/conda/envs
-DOMNITRACE_PYTHON_ENVS="py3.6;py3.7;py3.8;py3.9"
-DOMNITRACE_PYTHON_ENVS="py3.6;py3.7;py3.8;py3.9;py3.10"
-DLULESH_BUILD_KOKKOS=OFF

- name: Build
timeout-minutes: 45
timeout-minutes: 60
run:
cmake --build build --target all --parallel 2 -- VERBOSE=1

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ubuntu-focal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
python3 -m pip install numpy &&
python3 -m pip install perfetto &&
python3 -m pip install 'cmake==3.16.3' &&
for i in 6 7 8 9; do /opt/conda/envs/py3.${i}/bin/python -m pip install numpy perfetto dataclasses; done
for i in 6 7 8 9 10; do /opt/conda/envs/py3.${i}/bin/python -m pip install numpy perfetto dataclasses; done

- name: Configure Env
run:
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
-DOMNITRACE_BUILD_STATIC_LIBGCC=${{ matrix.static-libgcc }}
-DOMNITRACE_BUILD_STATIC_LIBSTDCXX=${{ matrix.static-libstdcxx }}
-DOMNITRACE_PYTHON_PREFIX=/opt/conda/envs
-DOMNITRACE_PYTHON_ENVS="py3.6;py3.7;py3.8;py3.9"
-DOMNITRACE_PYTHON_ENVS="py3.6;py3.7;py3.8;py3.9;py3.10"

- name: Build
timeout-minutes: 60
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
-DOMNITRACE_INSTALL_PERFETTO_TOOLS=ON

- name: Build
timeout-minutes: 45
timeout-minutes: 60
run:
cmake --build build --target all --parallel 2 -- VERBOSE=1

Expand Down Expand Up @@ -368,7 +368,7 @@ jobs:
-DDYNINST_ELFUTILS_DOWNLOAD_VERSION=${{ env.ELFUTILS_DOWNLOAD_VERSION }}

- name: Build
timeout-minutes: 45
timeout-minutes: 60
run:
cmake --build ${{ github.workspace }}/build --target all --parallel 2 -- VERBOSE=1

Expand Down

0 comments on commit ab4f1e3

Please sign in to comment.