Skip to content

Commit 23e1743

Browse files
committed
Prepare release 2.12.0.0
1 parent 808407b commit 23e1743

File tree

10 files changed

+360
-244
lines changed

10 files changed

+360
-244
lines changed

.github/actions/bindist-actions/action-deb10/action.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ runs:
1111
entrypoint: .github/scripts/entrypoint.sh
1212
env:
1313
GHC_VERSION: ${{ inputs.version }}
14-
INSTALL: apt-get update && apt-get install -y
14+
INSTALL: sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list &&
15+
sed -i 's|security.debian.org|archive.debian.org/|g' /etc/apt/sources.list &&
16+
sed -i /-updates/d /etc/apt/sources.list && apt-get update && apt-get install
17+
-y
1518
STAGE: ${{ inputs.stage }}
1619
TOOLS: libnuma-dev zlib1g-dev libgmp-dev libgmp10 libssl-dev liblzma-dev libbz2-dev
1720
git wget lsb-release software-properties-common gnupg2 apt-transport-https gcc

.github/generate-ci/gen_ci.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ artifactName arch opsys = archName arch ++ "-" ++ case opsys of
6464
data GHC
6565
= GHC967
6666
| GHC984
67-
| GHC9102
67+
| GHC9103
6868
| GHC9122
6969
deriving (Eq, Enum, Bounded)
7070

7171
ghcVersion :: GHC -> String
7272
ghcVersion GHC967 = "9.6.7"
7373
ghcVersion GHC984 = "9.8.4"
74-
ghcVersion GHC9102 = "9.10.2"
74+
ghcVersion GHC9103 = "9.10.3"
7575
ghcVersion GHC9122 = "9.12.2"
7676

7777
ghcVersionIdent :: GHC -> String
@@ -118,7 +118,7 @@ distroName Rocky8 = "unknown"
118118

119119
distroInstall :: Distro -> String
120120
distroInstall Debian9 = "sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list && sed -i 's|security.debian.org|archive.debian.org/|g' /etc/apt/sources.list && sed -i /-updates/d /etc/apt/sources.list && apt-get update && apt-get install -y"
121-
distroInstall Debian10 = "apt-get update && apt-get install -y"
121+
distroInstall Debian10 = "sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list && sed -i 's|security.debian.org|archive.debian.org/|g' /etc/apt/sources.list && sed -i /-updates/d /etc/apt/sources.list && apt-get update && apt-get install -y"
122122
distroInstall Debian11 = "apt-get update && apt-get install -y"
123123
distroInstall Debian12 = "apt-get update && apt-get install -y"
124124
distroInstall Ubuntu1804 = "apt-get update && apt-get install -y"

0 commit comments

Comments
 (0)