Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
ci-images
Commits
a59df0ab
Commit
a59df0ab
authored
Mar 26, 2021
by
Ben Gamari
🐢
Committed by
Ben Gamari
Mar 27, 2021
Browse files
Bump GHC 8.10.4
parent
66f4ac21
Pipeline
#36917
failed with stages
in 54 seconds
Changes
4
Pipelines
6
Hide whitespace changes
Inline
Side-by-side
images/alpine.dhall
View file @
a59df0ab
...
...
@@ -57,7 +57,7 @@ let installDepsStep: CF.Type =
[ "apk add --no-cache ${Prelude.Text.concatSep " " buildDepends}" ]
let
ghcVersion: Text = "8.10.
2
"
ghcVersion: Text = "8.10.
4
"
let
fetchGhcStep: CF.Type =
...
...
images/centos.dhall
View file @
a59df0ab
...
...
@@ -156,7 +156,7 @@ let images: List Image.Type =
{ name = "x86_64-linux-centos7"
, fromImage = "centos:7"
, runnerTags = [ "x86_64-linux" ]
, bootstrapGhc = { version = "8.10.
2
", triple = "x86_64-centos7-linux" }
, bootstrapGhc = { version = "8.10.
4
", triple = "x86_64-centos7-linux" }
, llvm = None Llvm.Source
}
]
...
...
images/debian.dhall
View file @
a59df0ab
...
...
@@ -187,7 +187,7 @@ let images: List Image.Type =
, fromImage = "arm64v8/debian:buster"
, runnerTags = [ "aarch64-linux" ]
, bootstrapLlvm = Some (Llvm.Source.FromBindist { version = "9.0.1" , triple = "aarch64-linux-gnu" })
, bootstrapGhc = { version = "8.10.
2
", triple = "aarch64-deb10-linux" }
, bootstrapGhc = { version = "8.10.
4
", triple = "aarch64-deb10-linux" }
, llvm = Some (Llvm.Source.FromBindist { version = "11.0.1" , triple = "aarch64-linux-gnu" })
, cabalSource = Cabal.Type.FromBindist "http://home.smart-cactus.org/~ben/ghc/cabal-install-3.4.0.0-rc4-aarch64-linux.tar.xz"
, extraPackages = [ "libnuma-dev" ] : List Text
...
...
@@ -199,7 +199,7 @@ let images: List Image.Type =
, fromImage = "arm32v7/debian:buster"
, runnerTags = [ "armv7-linux" ]
, bootstrapLlvm = Some (Llvm.Source.FromBindist { version = "9.0.1", triple = "armv7a-linux-gnueabihf" })
, bootstrapGhc = { version = "8.10.
2
", triple = "armv7-deb10-linux" }
, bootstrapGhc = { version = "8.10.
4
", triple = "armv7-deb10-linux" }
, llvm = Some (Llvm.Source.FromBindist { version = "11.0.1" , triple = "armv7a-linux-gnueabihf" })
, cabalSource = Cabal.Type.FromBindist "http://home.smart-cactus.org/~ben/ghc/cabal-install-3.4.0.0-rc4-armv7l-deb10.tar.xz"
, extraPackages = [ "libnuma-dev" ] # debianBuildDepends
...
...
@@ -211,7 +211,7 @@ let images: List Image.Type =
, fromImage = "i386/debian:stretch"
, runnerTags = [ "x86_64-linux" ]
, bootstrapLlvm = None Llvm.Source
, bootstrapGhc = { version = "8.10.
2
", triple = "i386-deb9-linux" }
, bootstrapGhc = { version = "8.10.
4
", triple = "i386-deb9-linux" }
, llvm = None Llvm.Source
, cabalSource = Cabal.Type.FromBindist "https://downloads.haskell.org/~cabal/cabal-install-3.2.0.0/cabal-install-3.2.0.0-i386-unknown-linux.tar.xz"
, extraPackages = debianBuildDepends # [ "cabal-install" ] : List Text
...
...
@@ -224,7 +224,7 @@ let images: List Image.Type =
-- , fromImage = "i386/debian:buster"
-- , runnerTags = [ "x86_64-linux" ]
-- , bootstrapLlvm = None Llvm.Source
-- , bootstrapGhc = { version = "8.10.
2
", triple = "i386-deb10-linux" }
-- , bootstrapGhc = { version = "8.10.
4
", triple = "i386-deb10-linux" }
-- , llvm = None Llvm.Source
-- , cabalSource = Cabal.Type.FromSource "3.2.0.0"
-- , extraPackages =
...
...
@@ -239,7 +239,7 @@ let images: List Image.Type =
, fromImage = "amd64/debian:buster"
, runnerTags = [ "x86_64-linux" ]
, bootstrapLlvm = Some (Llvm.Source.FromBindist { version = "9.0.1", triple = "x86_64-linux-gnu-ubuntu-16.04" })
, bootstrapGhc = { version = "8.10.
2
", triple = "x86_64-deb10-linux" }
, bootstrapGhc = { version = "8.10.
4
", triple = "x86_64-deb10-linux" }
, llvm = Some (Llvm.Source.FromBindist { version = "11.0.1" , triple = "x86_64-linux-gnu-ubuntu-16.04" })
, cabalSource = Cabal.fromUpstreamBindist { version = "3.2.0.0", triple = "x86_64-unknown-linux" }
, extraPackages =
...
...
@@ -254,7 +254,7 @@ let images: List Image.Type =
, fromImage = "amd64/debian:stretch"
, runnerTags = [ "x86_64-linux" ]
, bootstrapLlvm = None Llvm.Source
, bootstrapGhc = { version = "8.10.
2
", triple = "x86_64-deb9-linux" }
, bootstrapGhc = { version = "8.10.
4
", triple = "x86_64-deb9-linux" }
, llvm = Some (Llvm.Source.FromBindist { version = "10.0.1" , triple = "x86_64-linux-gnu-ubuntu-16.04" })
, cabalSource = Cabal.fromUpstreamBindist { version = "3.2.0.0", triple = "x86_64-unknown-linux" }
, extraPackages = debianBuildDepends : List Text
...
...
@@ -265,7 +265,7 @@ let images: List Image.Type =
, fromImage = "amd64/ubuntu:20.04"
, runnerTags = [ "x86_64-linux" ]
, bootstrapLlvm = None Llvm.Source
, bootstrapGhc = { version = "8.10.
2
", triple = "x86_64-deb9-linux" }
, bootstrapGhc = { version = "8.10.
4
", triple = "x86_64-deb9-linux" }
, llvm = Some (Llvm.Source.FromBindist { version = "11.0.1" , triple = "x86_64-linux-gnu-ubuntu-16.04" })
, cabalSource = Cabal.fromUpstreamBindist { version = "3.2.0.0", triple = "x86_64-unknown-linux" }
, extraPackages = ubuntuBuildDepends
...
...
images/fedora.dhall
View file @
a59df0ab
...
...
@@ -159,7 +159,7 @@ let images: List Image.Type =
, fromImage = "amd64/fedora:27"
, runnerTags = [ "x86_64-linux" ]
, bootstrapLlvm = None Llvm.Source
, bootstrapGhc = { version = "8.10.
2
", triple = "x86_64-fedora27-linux" }
, bootstrapGhc = { version = "8.10.
4
", triple = "x86_64-fedora27-linux" }
, llvm = Some (Llvm.Source.FromBindist { version = "11.0.1" , triple = "x86_64-linux-gnu-ubuntu-16.04" })
, cabalSource = Cabal.fromUpstreamBindist { version = "3.2.0.0", triple = "x86_64-unknown-linux" }
, extraPackages = [] : List Text
...
...
@@ -170,7 +170,7 @@ let images: List Image.Type =
, fromImage = "amd64/fedora:32"
, runnerTags = [ "x86_64-linux" ]
, bootstrapLlvm = None Llvm.Source
, bootstrapGhc = { version = "8.10.
2
", triple = "x86_64-fedora27-linux" }
, bootstrapGhc = { version = "8.10.
4
", triple = "x86_64-fedora27-linux" }
, llvm = Some (Llvm.Source.FromBindist { version = "11.0.1" , triple = "x86_64-linux-gnu-ubuntu-16.04" })
, cabalSource = Cabal.fromUpstreamBindist { version = "3.2.0.0", triple = "x86_64-unknown-linux" }
, extraPackages = [] : List Text
...
...
@@ -181,7 +181,7 @@ let images: List Image.Type =
, fromImage = "amd64/fedora:33"
, runnerTags = [ "x86_64-linux" ]
, bootstrapLlvm = None Llvm.Source
, bootstrapGhc = { version = "8.10.
2
", triple = "x86_64-fedora27-linux" }
, bootstrapGhc = { version = "8.10.
4
", triple = "x86_64-fedora27-linux" }
, llvm = Some (Llvm.Source.FromBindist { version = "11.0.1" , triple = "x86_64-linux-gnu-ubuntu-16.04" })
, cabalSource = Cabal.fromUpstreamBindist { version = "3.2.0.0", triple = "x86_64-unknown-linux" }
, extraPackages = [] : List Text
...
...
Write
Preview
Supports
Markdown
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