diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-07-21 10:03:53 -0600 |
---|---|---|
committer | Ondřej Čertík <ondrej@certik.us> | 2020-07-21 11:17:09 -0600 |
commit | 62fc3dff456068706b5980e61149802d7d143224 (patch) | |
tree | 29f747ee516a3c806866d34e9e2c093b92eff3de /.github | |
parent | 4129b6e8798a0999345d87a9d34d59cb060fc0df (diff) | |
download | fpm-62fc3dff456068706b5980e61149802d7d143224.tar.gz fpm-62fc3dff456068706b5980e61149802d7d143224.zip |
Install gfortran on macOS
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/CI.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 51101c4..ca1ba03 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -27,6 +27,13 @@ jobs: - name: Checkout code uses: actions/checkout@v1 + - name: Install GFortran macOS + if: contains(matrix.os, 'macos') + run: | + ln -s /usr/local/bin/gfortran-${GCC_V} /usr/local/bin/gfortran + which gfortran-${GCC_V} + which gfortran + - name: Install Haskell macOS if: contains(matrix.os, 'macos') run: | |