소스 검색

Fix windows cmake

Vincent Stumpf 2 년 전
부모
커밋
26dee6891b
1개의 변경된 파일1개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 6
      .github/workflows/build_servers_cmake.yml

+ 1 - 6
.github/workflows/build_servers_cmake.yml

@@ -40,15 +40,10 @@ jobs:
         run: cmake -E make_directory ${{github.workspace}}/build
 
       - name: Configure CMake
-        # Use a bash shell so we can use the same syntax for environment variable
-        # access regardless of the host operating system
-        shell: bash
         working-directory: ${{github.workspace}}/build
-
-        run: cmake -S ${{github.workspace}} -B ${{github.workspace}}/build
+        run: cmake ..
 
       - name: Build
         working-directory: ${{github.workspace}}/build
-        shell: bash
         # Execute the build.  You can specify a specific target with "--target <NAME>"
         run: cmake --build .