diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-01-13 22:49:04 -0700 |
---|---|---|
committer | Ondřej Čertík <ondrej@certik.us> | 2020-01-13 22:49:04 -0700 |
commit | b63872f0c4b236a60f86dbd683faa82f5a2a4650 (patch) | |
tree | eea4a19610f599a09f15eda230af3c1f3d8a76ac /.github/workflows | |
parent | 117fa442f800876d774b2f5c3215785986746f6d (diff) | |
download | fpm-b63872f0c4b236a60f86dbd683faa82f5a2a4650.tar.gz fpm-b63872f0c4b236a60f86dbd683faa82f5a2a4650.zip |
Install Rust on macOS
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/CI.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3a5069d..b63f9fe 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -47,6 +47,10 @@ jobs: --slave /usr/bin/gfortran gfortran /usr/bin/gfortran-${GCC_V} \ --slave /usr/bingcov gcov /usr/bin/gcov-${GCC_V} + - name: Install Rust macOS + if: contains( matrix.os, 'macos') + run: curl https://sh.rustup.rs -sSf | sh -s -- -y + - name: Install GFortran macOS if: contains( matrix.os, 'macos') run: brew install gcc@${GCC_V} || brew upgrade gcc@${GCC_V} || true |