From d719a59626ff55d65bdb1aea5cfc770e399a9220 Mon Sep 17 00:00:00 2001 From: Ben Wibking Date: Thu, 11 Jul 2024 19:05:13 -0400 Subject: [PATCH] Fix Intel CI (#675) ### Description Removes unused CMake option whose behavior changed in version 3.30.0. Thanks to Weiqun for the fix. ### Related issues Fixes https://github.com/quokka-astro/quokka/issues/674. ### Checklist _Before this pull request can be reviewed, all of these tasks should be completed. Denote completed tasks with an `x` inside the square brackets `[ ]` in the Markdown source below:_ - [x] I have added a description (see above). - [x] I have added a link to any related issues see (see above). - [x] I have read the [Contributing Guide](https://github.com/quokka-astro/quokka/blob/development/CONTRIBUTING.md). - [ ] I have added tests for any new physics that this PR adds to the code. - [ ] I have tested this PR on my local computer and all tests pass. - [ ] I have manually triggered the GPU tests with the magic comment `/azp run`. - [ ] I have requested a reviewer for this PR. --- .github/workflows/intel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/intel.yml b/.github/workflows/intel.yml index 94971544e..ec65b802f 100644 --- a/.github/workflows/intel.yml +++ b/.github/workflows/intel.yml @@ -62,7 +62,7 @@ jobs: - name: Run tests working-directory: ${{runner.workspace}}/quokka/build - run: ctest --output-on-failure -C $BUILD_TYPE + run: ctest --output-on-failure - name: Upload test output if: always()