Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ben Bellick
GHC
Commits
9a24b411
Commit
9a24b411
authored
4 years ago
by
Ben Gamari
Browse files
Options
Downloads
Patches
Plain Diff
gitlab-ci: Bootstrap with 8.8.4-rc1 on Windows
This avoids bugs in the `process` library during bootstrapping.
parent
1fdd6165
No related branches found
Branches containing commit
Tags
ghc-8.8.4-rc1
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+14
-2
14 additions, 2 deletions
.gitlab-ci.yml
.gitlab/win32-init.sh
+4
-1
4 additions, 1 deletion
.gitlab/win32-init.sh
with
18 additions
and
3 deletions
.gitlab-ci.yml
+
14
−
2
View file @
9a24b411
...
...
@@ -570,7 +570,16 @@ release-x86_64-linux-fedora27-dwarf:
stage
:
full-build
allow_failure
:
true
variables
:
GHC_VERSION
:
"
8.8.3"
GHC_VERSION
:
"
8.8.3.20200710"
GHC_TARBALL_URL
:
"
http://home.smart-cactus.org/~ben/ghc/release-prep/8.8.4-rc1/ghc-8.8.3.20200710-x86_64-unknown-mingw32.tar.xz"
before_script
:
-
python3 .gitlab/fix-submodules.py
-
git submodule sync --recursive
-
git submodule update --init --recursive
-
git checkout .gitmodules
# N.B. Drop bash syntax on Windows since this is interpreted by
# PowerShell.
-
"
git
fetch
https://gitlab.haskell.org/ghc/ghc-performance-notes.git
refs/notes/perf:refs/notes/perf"
script
:
-
|
python boot
...
...
@@ -608,7 +617,8 @@ nightly-i386-windows-hadrian:
allow_failure
:
true
variables
:
BUILD_FLAVOUR
:
"
UNSET"
GHC_VERSION
:
"
8.8.3"
GHC_VERSION
:
"
8.8.3.20200710"
GHC_TARBALL_URL
:
"
http://home.smart-cactus.org/~ben/ghc/release-prep/8.8.4-rc1/ghc-8.8.3.20200710-x86_64-unknown-mingw32.tar.xz"
BUILD_PROF_LIBS
:
"
YES"
BIN_DIST_PREP_TAR_COMP
:
"
bindistprep/ghc-x86_64-mingw32.tar.xz"
script
:
...
...
@@ -647,6 +657,8 @@ release-x86_64-windows:
extends
:
validate-x86_64-windows
variables
:
MSYSTEM
:
MINGW64
GHC_VERSION
:
8.8.4-rc1
GHC_TARBALL_URL
:
"
http://home.smart-cactus.org/~ben/ghc/release-prep/8.8.4-rc1/ghc-8.8.3.20200710-x86_64-unknown-mingw32.tar.xz"
BUILD_FLAVOUR
:
"
perf"
CONFIGURE_ARGS
:
"
--target=x86_64-unknown-mingw32"
...
...
This diff is collapsed.
Click to expand it.
.gitlab/win32-init.sh
+
4
−
1
View file @
9a24b411
...
...
@@ -22,7 +22,10 @@ if [ ! -e $toolchain/bin/ghc ]; then
exit
1
;;
esac
curl https://downloads.haskell.org/~ghc/
$GHC_VERSION
/ghc-
$GHC_VERSION
-
$triple
.tar.xz |
tar
-xJ
if
[
-z
"
$GHC_TARBALL_URL
"
]
;
then
GHC_TARBALL_URL
=
"https://downloads.haskell.org/~ghc/
$GHC_VERSION
/ghc-
$GHC_VERSION
-
$triple
.tar.xz"
fi
curl
"
$GHC_TARBALL_URL
"
|
tar
-xJ
mv
ghc-
$GHC_VERSION
toolchain
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment