comparison .github/workflows/make.yaml @ 30242:2b74543c85ea

GitHub-CI: Don't use cross-compilers for native Windows builds. * .github/workflows/make.yaml (windows): Don't use cross-compilers for native builds.
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 12 Oct 2021 08:46:56 +0200
parents 3b3ec2ea46ef
children 9dea84c8be9e
comparison
equal deleted inserted replaced
30241:628f26e122d9 30242:2b74543c85ea
304 target: x86_64 304 target: x86_64
305 target-triplet: x86_64-w64-mingw32 305 target-triplet: x86_64-w64-mingw32
306 target-prefix: mingw-w64-x86_64 306 target-prefix: mingw-w64-x86_64
307 msystem: MINGW64 307 msystem: MINGW64
308 mingw-prefix: mingw64 308 mingw-prefix: mingw64
309 cc: x86_64-w64-mingw32-gcc 309 cc: gcc
310 cxx: x86_64-w64-mingw32-g++ 310 cxx: g++
311 f77: x86_64-w64-mingw32-gfortran 311 f77: gfortran
312 - compiler: gcc 312 - compiler: gcc
313 target: i686 313 target: i686
314 target-triplet: i686-w64-mingw32 314 target-triplet: i686-w64-mingw32
315 target-prefix: mingw-w64-i686 315 target-prefix: mingw-w64-i686
316 msystem: MINGW32 316 msystem: MINGW32
317 mingw-prefix: mingw32 317 mingw-prefix: mingw32
318 cc: i686-w64-mingw32-gcc 318 cc: gcc
319 cxx: i686-w64-mingw32-g++ 319 cxx: g++
320 f77: i686-w64-mingw32-gfortran 320 f77: gfortran
321 321
322 env: 322 env:
323 CHERE_INVOKING: 1 323 CHERE_INVOKING: 1
324 CC: ${{ matrix.cc }} 324 CC: ${{ matrix.cc }}
325 CXX: ${{ matrix.cxx }} 325 CXX: ${{ matrix.cxx }}