Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sanchayan Maity
GHC
Commits
9a24b411
Commit
9a24b411
authored
Jul 11, 2020
by
Ben Gamari
🐢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gitlab-ci: Bootstrap with 8.8.4-rc1 on Windows
This avoids bugs in the `process` library during bootstrapping.
parent
1fdd6165
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
+18
-3
.gitlab-ci.yml
.gitlab-ci.yml
+14
-2
.gitlab/win32-init.sh
.gitlab/win32-init.sh
+4
-1
No files found.
.gitlab-ci.yml
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"
...
...
.gitlab/win32-init.sh
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment