Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build on Windows using clang-cl compilers #1709

Closed
wants to merge 9 commits into from
11 changes: 8 additions & 3 deletions .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ jobs:
- {
name: "Windows Latest MSVC", artifact: "Win64.exe",
os: windows-latest,
cc: "cl", cxx: "cl",
cc: "clang-cl", cxx: "clang-cl",
build_type: "Release",
cmake_flags: "",
build_flags: "-j 2",
build_flags: "",
cpack_flags: "-G NSIS",
}
- {
Expand Down Expand Up @@ -96,7 +96,12 @@ jobs:
fi
- name: Install Dependencies (Windows)
if: runner.os == 'Windows'
run: choco install ninja
uses: seanmiddleditch/gha-setup-ninja@master
with:
version: 1.12.1

- name: Install Fortran (Windows)
uses: fortran-lang/setup-fortran@v1

- name: Checkout openchemistry
uses: actions/checkout@v4
Expand Down
Loading