Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
ci-images
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Glasgow Haskell Compiler
ci-images
Commits
5c079605
"README.md" did not exist on "sdoc"
Commit
5c079605
authored
3 years ago
by
Ben Gamari
Browse files
Options
Downloads
Patches
Plain Diff
Bump bootstrap compiler to GHC 8.10.7
parent
81f68e01
No related branches found
No related tags found
2 merge requests
!86
Bump GHC 9.0
,
!78
Bump bootstrap compiler to 8.10.7
Pipeline
#40778
passed
3 years ago
Stage: prepare
Stage: build
Pipeline: ci-images
#40780
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
images/alpine.dhall
+1
-1
1 addition, 1 deletion
images/alpine.dhall
images/centos.dhall
+1
-1
1 addition, 1 deletion
images/centos.dhall
images/debian.dhall
+6
-6
6 additions, 6 deletions
images/debian.dhall
images/fedora.dhall
+3
-3
3 additions, 3 deletions
images/fedora.dhall
with
11 additions
and
11 deletions
images/alpine.dhall
+
1
−
1
View file @
5c079605
...
...
@@ -57,7 +57,7 @@ let installDepsStep: CF.Type =
[ "apk add --no-cache ${Prelude.Text.concatSep " " buildDepends}" ]
let
ghcVersion: Text = "8.10.
4
"
ghcVersion: Text = "8.10.
7
"
let
fetchGhcStep: CF.Type =
...
...
This diff is collapsed.
Click to expand it.
images/centos.dhall
+
1
−
1
View file @
5c079605
...
...
@@ -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.
4
", triple = "x86_64-centos7-linux" }
, bootstrapGhc = { version = "8.10.
7
", triple = "x86_64-centos7-linux" }
, llvm = None Llvm.Source
}
]
...
...
This diff is collapsed.
Click to expand it.
images/debian.dhall
+
6
−
6
View file @
5c079605
...
...
@@ -189,7 +189,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.
4
", triple = "aarch64-deb10-linux" }
, bootstrapGhc = { version = "8.10.
7
", 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
...
...
@@ -201,7 +201,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.
4
", triple = "armv7-deb10-linux" }
, bootstrapGhc = { version = "8.10.
7
", 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
...
...
@@ -213,7 +213,7 @@ let images: List Image.Type =
, fromImage = "i386/debian:stretch"
, runnerTags = [ "x86_64-linux" ]
, bootstrapLlvm = None Llvm.Source
, bootstrapGhc = { version = "8.10.
4
", triple = "i386-deb9-linux" }
, bootstrapGhc = { version = "8.10.
7
", 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
...
...
@@ -241,7 +241,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.
4
", triple = "x86_64-deb10-linux" }
, bootstrapGhc = { version = "8.10.
7
", 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 =
...
...
@@ -256,7 +256,7 @@ let images: List Image.Type =
, fromImage = "amd64/debian:stretch"
, runnerTags = [ "x86_64-linux" ]
, bootstrapLlvm = None Llvm.Source
, bootstrapGhc = { version = "8.10.
4
", triple = "x86_64-deb9-linux" }
, bootstrapGhc = { version = "8.10.
7
", 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
...
...
@@ -267,7 +267,7 @@ let images: List Image.Type =
, fromImage = "amd64/ubuntu:20.04"
, runnerTags = [ "x86_64-linux" ]
, bootstrapLlvm = None Llvm.Source
, bootstrapGhc = { version = "8.10.
4
", triple = "x86_64-deb9-linux" }
, bootstrapGhc = { version = "8.10.
7
", 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
...
...
This diff is collapsed.
Click to expand it.
images/fedora.dhall
+
3
−
3
View file @
5c079605
...
...
@@ -161,7 +161,7 @@ let images: List Image.Type =
, fromImage = "amd64/fedora:27"
, runnerTags = [ "x86_64-linux" ]
, bootstrapLlvm = None Llvm.Source
, bootstrapGhc = { version = "8.10.
4
", triple = "x86_64-fedora27-linux" }
, bootstrapGhc = { version = "8.10.
7
", 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
...
...
@@ -172,7 +172,7 @@ let images: List Image.Type =
, fromImage = "amd64/fedora:32"
, runnerTags = [ "x86_64-linux" ]
, bootstrapLlvm = None Llvm.Source
, bootstrapGhc = { version = "8.10.
4
", triple = "x86_64-fedora27-linux" }
, bootstrapGhc = { version = "8.10.
7
", 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
...
...
@@ -183,7 +183,7 @@ let images: List Image.Type =
, fromImage = "amd64/fedora:33"
, runnerTags = [ "x86_64-linux" ]
, bootstrapLlvm = None Llvm.Source
, bootstrapGhc = { version = "8.10.
4
", triple = "x86_64-fedora27-linux" }
, bootstrapGhc = { version = "8.10.
7
", 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
...
...
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