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

AzureCI: add Windows winlibs-mingw64 build with ucrt instead of msvcrt #4264

Closed
wants to merge 7 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,20 @@ jobs:
- script: |
mingw32-make CC=gcc FC=gfortran DYNAMIC_ARCH=1 DYNAMIC_LIST="SANDYBRIDGE"

- job: Windows_mingw_ucrt_gmake
pool:
vmImage: 'windows-latest'
steps:
- script: |
mkdir winlib
cd winlib
curl -L -o mingw64.zip https://github.com/brechtsanders/winlibs_mingw/releases/download/12.2.0-16.0.0-10.0.0-ucrt-r5/winlibs-x86_64-posix-seh-gcc-12.2.0-mingw-w64ucrt-10.0.0-r5.zip
dir
tar -xf mingw64.zip
set PATH=%cd%\mingw64\bin;%PATH%
cd ..
mingw32-make CC=gcc FC=gfortran NOLAPACK=1 BUILD_SINGLE=1

- job: Windows_clang_cmake
pool:
vmImage: 'windows-latest'
Expand Down