[Git][ghc/ghc][wip/9.14.2-backports] 2 commits: ci/test-primops: use branch instead of commit hash
Zubin pushed to branch wip/9.14.2-backports at Glasgow Haskell Compiler / GHC Commits: a94272d2 by Zubin Duggal at 2026-07-29T15:06:09+05:30 ci/test-primops: use branch instead of commit hash apparently gitlab doesn't like commit hashes in this field - - - - - 39bc70bd by Zubin Duggal at 2026-07-29T15:06:48+05:30 releng: release script fixes Also fetch the freebsd job Fix download site url - - - - - 3 changed files: - .gitlab-ci.yml - .gitlab/rel_eng/fetch-gitlab-artifacts/fetch_gitlab.py - .gitlab/rel_eng/upload.sh Changes: ===================================== .gitlab-ci.yml ===================================== @@ -902,7 +902,7 @@ release-hackage-lint: UPSTREAM_PIPELINE_ID: "$CI_PIPELINE_ID" trigger: project: "ghc/test-primops" - branch: "ad04287165af3d48e037858eaf47558e3857c52d" + branch: "ghc-9.14" strategy: "depend" .test-primops-validate-template: ===================================== .gitlab/rel_eng/fetch-gitlab-artifacts/fetch_gitlab.py ===================================== @@ -46,6 +46,7 @@ def job_triple(job_name): 'release-aarch64-linux-deb12-release': 'aarch64-deb12-linux', 'release-aarch64-linux-alpine3_22-release+no_split_sections': 'aarch64-alpine3_22-linux', 'release-aarch64-darwin-release': 'aarch64-apple-darwin', + 'release-x86_64-freebsd14-release+no_split_sections': 'x86_64-unknown-freebsd14', 'source-tarball': 'src', 'package-hadrian-bootstrap-sources': 'hadrian-bootstrap-sources', ===================================== .gitlab/rel_eng/upload.sh ===================================== @@ -41,7 +41,7 @@ set -Eeuo pipefail : ${ver:=$(ls ghc-*.tar.* | sed -ne 's/ghc-\([0-9]\+\.[0-9]\+\.[0-9]\+\(\.[0-9]\+\)\?\).\+/\1/p' | head -n1)} if [ -z "$ver" ]; then echo "Failed to infer \$ver"; exit 1; fi -host="gitlab-storage.haskell.org" +host="gitlab.haskell.org:2222" usage() { echo "Usage: [rel_name=<name>] ver=7.10.3-rc2 $0 <action>" @@ -206,7 +206,7 @@ function set_symlink() { local SYMLINK="$1" # Check to make sure that the indicated version actually exists. curl "https://downloads.haskell.org/ghc/$ver" > /dev/null || (echo "$ver doesn't exist"; exit 1) - echo -e "rm ghc/$SYMLINK\nln -s $ver ghc/$SYMLINK" | sftp ghc@downloads-origin.haskell.org + echo -e "rm ghc/$SYMLINK\nln -s $ver ghc/$SYMLINK" | sftp ghc@gitlab.haskell.org:2222 curl -X PURGE "http://downloads.haskell.org/~ghc/$SYMLINK" } View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/eddff3ab50c646d4de34d2ba469980b... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/eddff3ab50c646d4de34d2ba469980b... You're receiving this email because of your account on gitlab.haskell.org. Manage all notifications: https://gitlab.haskell.org/-/profile/notifications | Help: https://gitlab.haskell.org/help
participants (1)
-
Zubin (@wz1000)