Switch to the haskell image
All checks were successful
Build / audit (push) Successful in 14m3s
Build / test (push) Successful in 13m54s

This commit is contained in:
Eugen Wissner 2024-03-06 13:40:36 +01:00
parent 16c7063224
commit cd28e6fb90
Signed by: belka
GPG Key ID: A27FDC1E8EE902C0
2 changed files with 9 additions and 16 deletions

View File

@ -18,26 +18,19 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
cabal update cabal update
cabal install hlint "--constraint=hlint ==3.6.1" cabal install hlint "--constraint=hlint ==3.8"
- run: cabal exec hlint -- src lib tests - run: cabal exec hlint -- src lib tests
test: test:
runs-on: alpine runs-on: haskell
steps: steps:
- name: Set up environment - name: Set up environment
shell: ash {0}
run: | run: |
apk add --no-cache git bash curl build-base readline-dev openssl-dev zlib-dev libpq-dev gmp-dev apt-get update -y
- name: Prepare system apt-get upgrade -y
run: | apt-get install -y nodejs pkg-config liblzma-dev
curl --create-dirs --output-dir \
~/.ghcup/bin https://downloads.haskell.org/~ghcup/0.1.19.5/x86_64-linux-ghcup-0.1.19.5 -o ghcup
chmod +x ~/.ghcup/bin/ghcup
~/.ghcup/bin/ghcup install ghc 9.4.8
~/.ghcup/bin/ghcup install cabal 3.6.2.0
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install dependencies - name: Install dependencies
run: | run: |
~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal update cabal update
~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal build slackbuilder-test - run: cabal test --test-show-details=streaming
- run: ~/.ghcup/bin/ghcup run --ghc 9.4.8 --cabal 3.6.2.0 -- cabal test --test-show-details=direct

View File

@ -90,8 +90,8 @@ packageName = takeWhile1P Nothing isNameToken
|| x == Word8._underscore || x == Word8._underscore
parseInfoFile :: GenParser PackageInfo parseInfoFile :: GenParser PackageInfo
parseInfoFile = PackageInfo parseInfoFile = PackageInfo . Char8.unpack
<$> (Char8.unpack <$> packagePrgnam) <$> packagePrgnam
<*> (Text.decodeUtf8 <$> variableEntry "VERSION") <*> (Text.decodeUtf8 <$> variableEntry "VERSION")
<*> (Text.decodeUtf8 <$> variableEntry "HOMEPAGE") <*> (Text.decodeUtf8 <$> variableEntry "HOMEPAGE")
<*> packageDownloads "DOWNLOAD" <*> packageDownloads "DOWNLOAD"