aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndřej Čertík <ondrej@certik.us>2020-07-21 09:28:38 -0600
committerOndřej Čertík <ondrej@certik.us>2020-07-21 09:28:38 -0600
commit0200fa4dfdf8cef264f2a1855dd3f69d86118a66 (patch)
treecb420b2a6174843384003f9c07b13444d3976183
parent4b2f8bca5b2289d18d5f0b6f7e17a0ccac428b47 (diff)
downloadfpm-0200fa4dfdf8cef264f2a1855dd3f69d86118a66.tar.gz
fpm-0200fa4dfdf8cef264f2a1855dd3f69d86118a66.zip
Install Haskell on macOS
-rw-r--r--.github/workflows/CI.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index 946caba..8437483 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -27,6 +27,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v1
+ - name: Install Haskell Linux / macOS (manual)
+ if: contains(matrix.os, 'macos')
+ run: |
+ curl --insecure -L https://get.haskellstack.org/stable/osx-x86_64.tar.gz | tar xz --strip-components=1 --include '*/stack' -C /Users/runner/.local/bin
+
- name: Install Haskell Linux / macOS
if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
uses: mstksg/setup-stack@v1