diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 317bc504a7..297ece9491 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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'