aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/CI.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/CI.yml')
-rw-r--r--.github/workflows/CI.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index 3f6d81a..946caba 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -34,9 +34,12 @@ jobs:
- name: Install Haskell Windows
if: contains(matrix.os, 'windows')
run: |
- wget https://get.haskellstack.org/stable/windows-x86_64.zip
- unzip windows-x86_64.zip
- copy windows-x86_64\stack.exe %APPDATA%\local\bin
+ (New-Object System.Net.WebClient).DownloadFile("https://get.haskellstack.org/stable/windows-x86_64.zip", "windows-x86_64.zip")
+ mkdir stack-tmp
+ cd stack-tmp
+ unzip ..\windows-x86_64.zip
+ copy stack.exe "C:\Program Files\Git\usr\bin"
+ cd ..
- name: Install GFortran Linux
if: contains(matrix.os, 'ubuntu')