Go to file
Julian Ospald c996fb58db
Re-sign
2024-03-13 20:58:16 +08:00
.github Fix HLS test 2024-03-02 00:13:21 +08:00
ghcup-gen Update ghcup-gen 2023-11-17 22:24:19 +08:00
scripts/release/cabal Fix release scripts 2023-11-17 21:23:02 +08:00
.gitignore Add cabal release scripts 2023-11-17 21:00:12 +08:00
.yamllint Implement yaml linting, fixes #63 2023-01-11 22:52:03 +08:00
README.md Improve metadata docs 2023-11-14 21:24:26 +08:00
cabal.project Update ghcup-gen 2023-11-17 22:24:19 +08:00
ghcup-0.0.1.json Update ghcup to 0.1.19.0 2023-01-13 12:58:23 +08:00
ghcup-0.0.1.json.sig Re-sign 2023-03-30 20:52:33 +08:00
ghcup-0.0.2.json Update ghcup to 0.1.19.0 2023-01-13 12:58:23 +08:00
ghcup-0.0.2.json.sig Re-sign 2023-03-30 20:52:33 +08:00
ghcup-0.0.2.yaml Update ghcup to 0.1.19.0 2023-01-13 12:58:23 +08:00
ghcup-0.0.2.yaml.sig Re-sign 2023-03-30 20:52:33 +08:00
ghcup-0.0.3.yaml Update ghcup to 0.1.19.0 2023-01-13 12:58:23 +08:00
ghcup-0.0.3.yaml.sig Re-sign 2023-03-30 20:52:33 +08:00
ghcup-0.0.4-rc2.yaml Initial commit 2021-10-19 20:12:14 +02:00
ghcup-0.0.4-rc2.yaml.sig Re-sign 2023-03-30 20:52:33 +08:00
ghcup-0.0.4.yaml Update ghcup to 0.1.19.0 2023-01-13 12:58:23 +08:00
ghcup-0.0.4.yaml.sig Re-sign 2023-03-30 20:52:33 +08:00
ghcup-0.0.5.yaml Fix windows GHCup 0.1.19.0 binary 2023-01-14 01:45:34 +08:00
ghcup-0.0.5.yaml.sig Re-sign 2023-03-30 20:52:33 +08:00
ghcup-0.0.6.yaml Update ghcup to 0.1.22.0 2024-03-13 20:57:44 +08:00
ghcup-0.0.6.yaml.sig Re-sign 2024-03-13 20:58:16 +08:00
ghcup-0.0.7.yaml Update ghcup to 0.1.22.0 2024-03-13 20:57:44 +08:00
ghcup-0.0.7.yaml.sig Re-sign 2024-03-13 20:58:16 +08:00
ghcup-0.0.8.yaml Update ghcup to 0.1.22.0 2024-03-13 20:57:44 +08:00
ghcup-0.0.8.yaml.sig Re-sign 2024-03-13 20:58:16 +08:00
ghcup-cross-0.0.8.yaml Add pre-install messages to cross bindists 2024-03-02 16:27:51 +08:00
ghcup-cross-0.0.8.yaml.sig Re-sign 2024-03-02 16:28:14 +08:00
ghcup-prereleases-0.0.7.yaml Update ghcup-prereleases-0.0.7.yaml as well 2024-01-29 13:30:29 +08:00
ghcup-prereleases-0.0.7.yaml.sig Re-sign 2024-01-29 13:30:46 +08:00
ghcup-prereleases-0.0.8.yaml Add Stack 2.15.0.1 pre-release to GHCup metadata 2024-01-28 17:42:37 +00:00
ghcup-prereleases-0.0.8.yaml.sig Re-sign 2024-01-29 13:30:46 +08:00
ghcup-vanilla-0.0.7.yaml Fix #183 Add metadata on release of Stack 2.15.3 2024-03-07 20:23:38 +00:00
ghcup-vanilla-0.0.7.yaml.sig Re-sign 2024-03-11 17:14:30 +08:00
ghcup-vanilla-0.0.8.yaml Fix #183 Add metadata on release of Stack 2.15.3 2024-03-07 20:23:38 +00:00
ghcup-vanilla-0.0.8.yaml.sig Re-sign 2024-03-11 17:14:30 +08:00
hls-metadata-0.0.1.json Update hls-metadata 2024-03-02 10:16:20 +08:00
hls-metadata-0.0.1.json.sig Re-sign 2024-03-02 10:16:37 +08:00

README.md

GHCup metadata

For end users

Metadata variants (distribution channels)

  • ghcup-A.B.C.yaml: this is the main metadata and what ghcup uses by default
  • ghcup-vanilla-A.B.C.yaml: this is similar to ghcup-A.B.C.yaml, but only uses upstream bindists (no patches/fixes are applied, no missing platforms added)
  • ghcup-prereleases-A.B.C.yaml: this contains pre-releases of all tools
  • ghcup-cross-A.B.C.yaml: this contains experimental cross compilers. See https://www.haskell.org/ghcup/guide/#cross-support for details.

Using the metadata

If you want access to both pre-releases and cross compilers, run:

ghcup config add-release-channel https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-prereleases-0.0.7.yaml
ghcup config add-release-channel https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-cross-0.0.8.yaml

If you want only vanilla upstream bindists and opt out of all unofficial stuff, you'd run:

ghcup config set url-source https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-vanilla-0.0.8.yaml

Also check the config.yaml documentation.

For contributors

Adding a new GHC version

  1. open the latest ghcup-<yaml-ver>.yaml
  2. find the latest ghc version (in yaml tree e.g. ghcupDownloads -> GHC -> 8.10.7)
  3. copy-paste it
  4. adjust the version, tags, changelog, source url
  5. adjust the various bindist urls (make sure to also change the yaml anchors)
  6. run cabal run ghcup-gen -- check -f ghcup-<yaml-ver>.yaml
  7. run cabal run ghcup-gen -- check-tarballs -f ghcup-<yaml-ver>.yaml -u 'ghc-8\.10\.8'
  8. run cabal run ghcup-gen -- generate-hls-ghcs -f ghcup-<yaml-ver>.yaml --format json -o hls-metadata-0.0.1.json
  9. run cabal run ghcup-gen -- generate-table -f ghcup-<yaml-ver>.yaml --stdout and adjust docs/install tables

During a pull request

Understanding tags

Tags are documented here. Search for data Tag. Some tags are unique. Uniqueness is checked by cabal run ghcup-gen -- check -f ghcup-<yaml-ver>.yaml.

If you want to check prereleases, do: cabal run ghcup-gen -- check -f ghcup-prereleases-<yaml-ver>.yaml --channel=prerelease