ci: nuke install libsodium-dev step

This commit is contained in:
Richard Marko 2023-11-23 06:05:49 +01:00
parent 3710c6a445
commit 1fd1d1118b
3 changed files with 2 additions and 35 deletions

View File

@ -4,20 +4,7 @@ let haskellCi =
let defSteps = haskellCi.defaultCabalSteps
in haskellCi.generalCi
( haskellCi.withNix
( defSteps
with extraSteps.pre
=
defSteps.extraSteps.pre
# [ haskellCi.installCachixStep "hnix-store"
, haskellCi.BuildStep.NameIf
{ name = "Install libsodium"
, run = "sudo apt install libsodium-dev"
, `if` = "matrix.os == 'ubuntu-latest'"
}
]
)
)
(haskellCi.withNix defSteps)
haskellCi.DhallMatrix::{
, ghc =
[ haskellCi.GHC.GHC963

View File

@ -5,20 +5,7 @@ let haskellCi =
let defSteps = haskellCi.defaultCabalSteps
in haskellCi.generalCi
( haskellCi.withNix
( defSteps
with extraSteps.pre
=
defSteps.extraSteps.pre
# [ haskellCi.installCachixStep "hnix-store"
, haskellCi.BuildStep.NameIf
{ name = "Install libsodium"
, run = "sudo apt install libsodium-dev"
, `if` = "matrix.os == 'ubuntu-latest'"
}
]
)
)
(haskellCi.withNix defSteps)
haskellCi.DhallMatrix::{
, ghc =
[ haskellCi.GHC.GHC963

View File

@ -7,13 +7,6 @@ jobs:
- uses: "cachix/install-nix-action@v23"
with:
nix_path: "nixpkgs=channel:nixos-unstable"
- uses: "cachix/cachix-action@v12"
with:
name: "hnix-store"
signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}"
- if: "matrix.os == 'ubuntu-latest'"
name: Install libsodium
run: "sudo apt install libsodium-dev"
- uses: "actions/checkout@v4"
with:
submodules: recursive