File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 5757 Write-Host "Current Working Directory: $curDir"
5858 Set-ExecutionPolicy Bypass -Scope Process -Force;[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; try { & ([ScriptBlock]::Create((Invoke-WebRequest https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/scripts/bootstrap/bootstrap-haskell.ps1 -UseBasicParsing))) -InstallDir ${GITHUB_WORKSPACE} -BootstrapUrl ("{0}/scripts/bootstrap/bootstrap-haskell" -f $curDir) -InBash -Msys2Env "MINGW64" } catch { Write-Error $_ }
5959 shell : pwsh
60+
61+ bootstrap-windows-cygwin :
62+ name : bootstrap-windows-cygwin
63+ runs-on : windows-latest
64+ env :
65+ BOOTSTRAP_HASKELL_CABAL_VERSION : 3.12.1.0
66+ BOOTSTRAP_HASKELL_GHC_VERSION : 9.6.7
67+ BOOTSTRAP_HASKELL_NONINTERACTIVE : yes
68+ ARCH : 64
69+ JSON_VERSION : " 0.0.7"
70+ steps :
71+ - name : Checkout code
72+ uses : actions/checkout@v3
73+ with :
74+ submodules : ' true'
75+
76+ - name : Install cygwin
77+ uses : cygwin/cygwin-install-action@master
78+
79+ - name : Run bootstrap
80+ run : sh ./.github/scripts/bootstrap.sh
You can’t perform that action at this time.
0 commit comments