Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
c8fc5fb44e
|
|||
|
0b92651bcc
|
|||
|
bcfe45ad6b
|
|||
|
|
ae180380b5 | ||
|
11aa850e1c
|
|||
|
e86689a03b
|
|||
|
053d4fe216
|
|||
|
|
173dc63375 | ||
|
9061e416ce
|
9
.github/workflows/test.yaml
vendored
9
.github/workflows/test.yaml
vendored
@@ -11,7 +11,7 @@ jobs:
|
|||||||
name: Test metadata
|
name: Test metadata
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
env:
|
env:
|
||||||
YAML_VER: 0.0.6
|
YAML_VER: 0.0.7
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
ghc:
|
ghc:
|
||||||
@@ -51,6 +51,9 @@ jobs:
|
|||||||
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
|
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
|
- name: install yamllint
|
||||||
|
run: pip install yamllint
|
||||||
|
|
||||||
- name: Update cabal cache
|
- name: Update cabal cache
|
||||||
run: cabal update
|
run: cabal update
|
||||||
shell: bash
|
shell: bash
|
||||||
@@ -60,9 +63,11 @@ jobs:
|
|||||||
cabal install --installdir="$HOME/.local/bin" --overwrite-policy=always --install-method=copy ghcup-gen
|
cabal install --installdir="$HOME/.local/bin" --overwrite-policy=always --install-method=copy ghcup-gen
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Check
|
- name: Check yaml
|
||||||
run: |
|
run: |
|
||||||
ghcup-gen -- check -f ghcup-${{ env.YAML_VER }}.yaml
|
ghcup-gen -- check -f ghcup-${{ env.YAML_VER }}.yaml
|
||||||
|
yamllint ghcup-${{ env.YAML_VER }}.yaml
|
||||||
|
python3 -c "import yaml ; stream = open('ghcup-${{ env.YAML_VER }}.yaml', 'r') ; yaml.safe_load(stream)"
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Check tarballs
|
- name: Check tarballs
|
||||||
|
|||||||
5
.yamllint
Normal file
5
.yamllint
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
extends: default
|
||||||
|
|
||||||
|
rules:
|
||||||
|
line-length: disable
|
||||||
|
indentation: disable
|
||||||
@@ -3165,11 +3165,11 @@ ghcupDownloads:
|
|||||||
viArch:
|
viArch:
|
||||||
A_64:
|
A_64:
|
||||||
Linux_UnknownLinux:
|
Linux_UnknownLinux:
|
||||||
unknown_versioning: &cabal-3620-32
|
unknown_versioning: &cabal-3620-64
|
||||||
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.6.2.0/cabal-install-3.6.2.0-x86_64-linux-alpine-static.tar.xz
|
dlUri: https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal/3.6.2.0/cabal-install-3.6.2.0-x86_64-linux-alpine-static.tar.xz
|
||||||
dlHash: 7810d31f35ca7649355647abc6406ad2a3696648ce848e49409e86bd70f6a2c6
|
dlHash: 7810d31f35ca7649355647abc6406ad2a3696648ce848e49409e86bd70f6a2c6
|
||||||
Linux_Alpine:
|
Linux_Alpine:
|
||||||
unknown_versioning: *cabal-3620-32
|
unknown_versioning: *cabal-3620-64
|
||||||
Darwin:
|
Darwin:
|
||||||
unknown_versioning:
|
unknown_versioning:
|
||||||
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.6.2.0/cabal-install-3.6.2.0-x86_64-darwin.tar.xz
|
dlUri: https://downloads.haskell.org/~cabal/cabal-install-3.6.2.0/cabal-install-3.6.2.0-x86_64-darwin.tar.xz
|
||||||
@@ -3733,7 +3733,7 @@ ghcupDownloads:
|
|||||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.9.0.0/haskell-language-server-1.9.0.0-x86_64-linux-deb10.tar.xz
|
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.9.0.0/haskell-language-server-1.9.0.0-x86_64-linux-deb10.tar.xz
|
||||||
dlSubdir: haskell-language-server-1.9.0.0
|
dlSubdir: haskell-language-server-1.9.0.0
|
||||||
dlHash: 9c625199d2ee8685c5b382ad4904ef18ae517e6bd7611258846125691b68199c
|
dlHash: 9c625199d2ee8685c5b382ad4904ef18ae517e6bd7611258846125691b68199c
|
||||||
unknown_versioning: *hls-180-64-deb9
|
unknown_versioning: *hls-190-64-deb10
|
||||||
Linux_Ubuntu:
|
Linux_Ubuntu:
|
||||||
unknown_versioning: &hls-190-64-ubuntu20
|
unknown_versioning: &hls-190-64-ubuntu20
|
||||||
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.9.0.0/haskell-language-server-1.9.0.0-x86_64-linux-ubuntu20.04.tar.xz
|
dlUri: https://downloads.haskell.org/~hls/haskell-language-server-1.9.0.0/haskell-language-server-1.9.0.0-x86_64-linux-ubuntu20.04.tar.xz
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
3735
ghcup-vanilla-0.0.7.yaml
Normal file
3735
ghcup-vanilla-0.0.7.yaml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
ghcup-vanilla-0.0.7.yaml.sig
Normal file
BIN
ghcup-vanilla-0.0.7.yaml.sig
Normal file
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user