Skip to content

Commit

Permalink
Update and rename cmake-windows-mingw32.yml to cmake-windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gxosty authored Dec 1, 2024
1 parent c56799e commit d579c62
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CMake build on Windows with MinGW32 (clang)
name: CMake build on Windows with MinGW32

on:
push:
Expand Down Expand Up @@ -28,7 +28,7 @@ jobs:
- 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.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++

- name: Build
working-directory: ${{github.workspace}}/build
Expand Down

0 comments on commit d579c62

Please sign in to comment.