Default to MSVC on Windows

This commit is contained in:
Alex Spataru 2024-11-19 02:48:03 -05:00
parent 3d6bdc6bfe
commit 8c07f18555

View File

@ -345,18 +345,12 @@ jobs:
uses: lukka/get-cmake@latest
with:
useLocalCache: true
- name: '⚙️ Install Intel Compiler'
uses: fortran-lang/setup-fortran@v1
with:
compiler: intel
version: 2024.1
- name: '🚧 Configure with CMake'
run: |
mkdir build
cd build
cmake ../ -DCMAKE_CXX_COMPILER=cc -DCMAKE_C_COMPILER=cxx -DCMAKE_BUILD_TYPE=Release
cmake ../ -DCMAKE_BUILD_TYPE=Release
- name: '🚧 Build application'
run: |