Skip to content

Commit

Permalink
[chore] add missing libsodium
Browse files Browse the repository at this point in the history
  • Loading branch information
MangoIV committed Jun 10, 2024
1 parent 13e3036 commit 9ce29e0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@ jobs:
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: 'latest'
- name: Set up environment for ${{ matrix.os }}
run: |
if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then
sudo apt-get update
sudo apt-get install -y libsodium-dev
elif [ "${{ matrix.os }}" == "macos-latest" ]; then
brew install libsodium
elif [ "${{ matrix.os }}" == "windows-latest" ]; then
choco install libsodium --version=1.0.18
fi
- name: Update
run: cabal update
- name: Freeze
Expand Down

0 comments on commit 9ce29e0

Please sign in to comment.