diff options
author | Laurence Kedward <laurence.kedward@bristol.ac.uk> | 2022-02-14 19:04:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-14 19:04:35 +0000 |
commit | 2c6148e0f9ceafc55da934b8b84299f05a3c030c (patch) | |
tree | 0f2c9d40a6410eebee73a4dcf8836cced6b27c0d /.github | |
parent | 57b5636f5f573f06326fdecd24057a6297a53501 (diff) | |
parent | d2009f179da1ddd83d92666f6395cf72414d1be2 (diff) | |
download | fpm-2c6148e0f9ceafc55da934b8b84299f05a3c030c.tar.gz fpm-2c6148e0f9ceafc55da934b8b84299f05a3c030c.zip |
Merge pull request #622 from LKedward/backend-output
Cleanup the backend output
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/CI.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2d951dc..3874636 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -59,11 +59,20 @@ jobs: --slave /usr/bin/gfortran gfortran /usr/bin/gfortran-${GCC_V} \ --slave /usr/bin/gcov gcov /usr/bin/gcov-${GCC_V} + - name: Install GFortran Windows + if: contains(matrix.os, 'windows') + run: | + Invoke-WebRequest -Uri $Env:GCC_DOWNLOAD -OutFile mingw-w64.zip + Expand-Archive mingw-w64.zip + echo "$pwd\mingw-w64\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + env: + GCC_DOWNLOAD: "https://github.com/brechtsanders/winlibs_mingw/releases/download/9.4.0-9.0.0-msvcrt-r2/winlibs-x86_64-posix-seh-gcc-9.4.0-mingw-w64-9.0.0-r2.zip" + # Phase 1: Bootstrap fpm with existing version - name: Install fpm uses: fortran-lang/setup-fpm@v3 with: - fpm-version: 'v0.2.0' + fpm-version: 'v0.3.0' - name: Remove fpm from path shell: bash |