[Git][ghc/ghc][wip/jeltsch/ghc-9-14-building-base] Change the actual installation procedure for Windows
Wolfgang Jeltsch pushed to branch wip/jeltsch/ghc-9-14-building-base at Glasgow Haskell Compiler / GHC Commits: 0ce7adde by Wolfgang Jeltsch at 2026-08-21T15:05:15+03:00 Change the actual installation procedure for Windows - - - - - 1 changed file: - .gitlab/base-ci.sh Changes: ===================================== .gitlab/base-ci.sh ===================================== @@ -46,9 +46,14 @@ do curl https://downloads.haskell.org/~ghc/${ghc_version}/${archive_file} \ >${ghc_version}.tar.xz tar -xJf ${ghc_version}.tar.xz - cd ghc-${ghc_version}-* - ./configure --prefix "${project_root}/other-ghcs/opt/${ghc_version}" - make install + if [ -f ghc-${ghc_version}-*/configure ] + then # Unix + cd ghc-${ghc_version}-* + ./configure --prefix "${project_root}/other-ghcs/opt/${ghc_version}" + make install + else # Windows + mv ghc-${ghc_version}-* "${project_root}/other-ghcs/opt/${ghc_version}" + fi cd ${project_root} # Build `base` with the installed GHC View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/0ce7adde3da59839dae53b8a07ff26c2... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/0ce7adde3da59839dae53b8a07ff26c2... You're receiving this email because of your account on gitlab.haskell.org. Manage all notifications: https://gitlab.haskell.org/-/profile/notifications | Help: https://gitlab.haskell.org/help
participants (1)
-
Wolfgang Jeltsch (@jeltsch)