File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 27
27
- name : Checkout code
28
28
uses : actions/checkout@v1
29
29
30
- - name : Install Haskell Linux / macOS
31
- if : contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
30
+ - name : Install GFortran macOS
31
+ if : contains(matrix.os, 'macos')
32
+ run : |
33
+ ln -s /usr/local/bin/gfortran-${GCC_V} /usr/local/bin/gfortran
34
+ which gfortran-${GCC_V}
35
+ which gfortran
36
+
37
+ - name : Install Haskell macOS
38
+ if : contains(matrix.os, 'macos')
39
+ run : |
40
+ mkdir /Users/runner/.local/bin
41
+ curl -L https://gist.github.com/certik/0e35f35753ae76f0f575d9b3d3f53633/raw/4cde02cc9215635c9401c2257a46be319e7ab6dd/osx-x86_64.tar.gz | tar xz --strip-components=1 --include '*/stack' -C /Users/runner/.local/bin
42
+
43
+ - name : Install Haskell Linux
44
+ if : contains(matrix.os, 'ubuntu')
32
45
uses : mstksg/setup-stack@v1
33
46
34
47
- name : Install Haskell Windows
You can’t perform that action at this time.
0 commit comments