Skip to content

Commit

Permalink
Merge pull request #5553 from nilsvu/disable_gcc_11_release
Browse files Browse the repository at this point in the history
Disable building executables on gcc 11 Release
  • Loading branch information
nilsvu authored Oct 9, 2023
2 parents e0ec15e + 7802791 commit 073b757
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/Tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,12 @@ jobs:
- compiler: gcc-11
build_type: Debug
PYTHON_EXECUTABLE: /usr/bin/python3.8
# Disable building executable for this build for now because it
# exceeds the available memory. See issue:
# https://github.com/sxs-collaboration/spectre/issues/5472
- compiler: gcc-11
build_type: Release
test_executables: OFF
# Test building with static libraries. Do so with clang in release
# mode because these builds use up little disk space compared to GCC
# builds or clang Debug builds
Expand Down Expand Up @@ -647,7 +653,7 @@ ${{ matrix.build_type }}-pch-${{ matrix.use_pch || 'ON' }}"
# Build the executables in a single thread to reduce memory usage
# sufficiently so they compile on the GitHub-hosted runners
- name: Build executables
if: matrix.COVERAGE != 'ON'
if: matrix.COVERAGE != 'ON' && matrix.test_executables != 'OFF'
working-directory: build
run: |
make test-executables
Expand Down Expand Up @@ -676,7 +682,7 @@ ${{ matrix.build_type }}-pch-${{ matrix.use_pch || 'ON' }}"
run: |
ccache -s
- name: Run non-unit tests
if: matrix.COVERAGE != 'ON'
if: matrix.COVERAGE != 'ON' && matrix.test_executables != 'OFF'
working-directory: build
run: |
# We get occasional random timeouts, repeat tests to see if
Expand Down

0 comments on commit 073b757

Please sign in to comment.