sss #546
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI_windows | |
on: [push, pull_request] | |
env: | |
CTEST_TIME_TIMEOUT: "5" # some failures hang forever | |
CMAKE_GENERATOR: Ninja | |
jobs: | |
msys2-build: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: [ | |
{ msystem: MSYS, arch: x86_64 }, | |
{ msystem: MINGW64, arch: x86_64 }, | |
{ msystem: MINGW32, arch: i686 } | |
] | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup MinGW native environment | |
uses: msys2/setup-msys2@v2 | |
if: contains(matrix.msystem, 'MINGW') | |
with: | |
msystem: ${{ matrix.msystem }} | |
update: false | |
install: >- | |
git | |
mingw-w64-${{ matrix.arch }}-gcc | |
mingw-w64-${{ matrix.arch }}-gcc-fortran | |
mingw-w64-${{ matrix.arch }}-python | |
mingw-w64-${{ matrix.arch }}-python-pip | |
mingw-w64-${{ matrix.arch }}-python-setuptools | |
mingw-w64-${{ matrix.arch }}-cmake | |
mingw-w64-${{ matrix.arch }}-ninja | |
- name: Setup msys POSIX environment | |
uses: msys2/setup-msys2@v2 | |
if: contains(matrix.msystem, 'MSYS') | |
with: | |
msystem: MSYS | |
update: false | |
install: >- | |
git | |
python | |
python-pip | |
cmake | |
ninja | |
mingw-w64-x86_64-gcc | |
mingw-w64-x86_64-gcc-fortran | |
# gcc | |
# mingw64/mingw-w64-x86_64-gcc | |
# mingw64/mingw-w64-x86_64-gcc-fortran | |
- name: Install fypp | |
run: pip install fypp | |
- name: test pacman | |
run: ls /* | |
- name: test pacman | |
run: ls /*/*/* | |
- name: find | |
run: find / -name "*gfortran*" -print | |
- name: test pacman | |
run: export PATH=$PATH:/mingw64/bin/ | |
- name: test pacman | |
run: whereis gcc | |
- run: >- | |
cmake | |
-Wdev | |
-B build | |
-DCMAKE_BUILD_TYPE=Debug | |
-DCMAKE_Fortran_FLAGS_DEBUG="-Wall -Wextra -Wimplicit-interface -fPIC -g -fcheck=all -fbacktrace" | |
-DCMAKE_MAXIMUM_RANK:String=4 | |
-DCMAKE_INSTALL_PREFIX=$PWD/_dist | |
env: | |
FC: gfortran | |
CC: gcc | |
CXX: g++ | |
- name: CMake build | |
run: cmake --build build --parallel | |
- name: catch build fail | |
run: cmake --build build --verbose --parallel 1 | |
if: failure() | |
- name: CTest | |
run: ctest --test-dir build --output-on-failure --parallel -V -LE quadruple_precision | |
- uses: actions/upload-artifact@v1 | |
if: failure() | |
with: | |
name: WindowsCMakeTestlog | |
path: build/Testing/Temporary/LastTest.log | |
- name: Install project | |
run: cmake --install build |