From 0d52684cec5bbb1930a4cd2f145ad12b88cf903b Mon Sep 17 00:00:00 2001 From: Charlie Vanaret Date: Sat, 16 Nov 2024 14:35:04 +0100 Subject: [PATCH] [CI] fixed syntax --- .github/workflows/build-macos.yml | 2 +- .github/workflows/build-windows.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 66e54e73..f19ad0d5 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -34,7 +34,7 @@ jobs: - name: Clean up FortranCInterface_VERIFY # FortranCInterface_VERIFY fails on macOS, but it's not actually needed for the current build - sed -i 's/FortranCInterface_VERIFY(CXX)/# FortranCInterface_VERIFY(CXX)/g' ${{github.workspace}}/CMakeLists.txt + run: sed -i 's/FortranCInterface_VERIFY(CXX)/# FortranCInterface_VERIFY(CXX)/g' ${{github.workspace}}/CMakeLists.txt - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 90b36067..f1e261b6 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -34,7 +34,7 @@ jobs: - name: Clean up FortranCInterface_VERIFY # FortranCInterface_VERIFY fails on macOS, but it's not actually needed for the current build - sed -i 's/FortranCInterface_VERIFY(CXX)/# FortranCInterface_VERIFY(CXX)/g' ${{github.workspace}}/CMakeLists.txt + run: sed -i 's/FortranCInterface_VERIFY(CXX)/# FortranCInterface_VERIFY(CXX)/g' ${{github.workspace}}/CMakeLists.txt - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.