fix build and debug ci

This commit is contained in:
Ben Sima 2020-10-19 15:27:32 -04:00
parent 5ad200bf0c
commit d39506bd3c
4 changed files with 4 additions and 1 deletions

View File

@ -10,6 +10,7 @@ before_script:
- sudo chmod 600 /swapfile - sudo chmod 600 /swapfile
- sudo mkswap /swapfile - sudo mkswap /swapfile
- sudo swapon /swapfile - sudo swapon /swapfile
- free -h
# get urbit # get urbit
- curl -O https://bootstrap.urbit.org/urbit-v0.10.8-linux64.tgz - curl -O https://bootstrap.urbit.org/urbit-v0.10.8-linux64.tgz
- tar xzf urbit-v0.10.8-linux64.tgz - tar xzf urbit-v0.10.8-linux64.tgz

View File

@ -6,6 +6,7 @@ nixpkgs.mkShell {
nixpkgs.ormolu.bin nixpkgs.ormolu.bin
(nixpkgs.pkgs.haskell.packages.${compiler}.ghcWithPackages (hp: with hp; [ (nixpkgs.pkgs.haskell.packages.${compiler}.ghcWithPackages (hp: with hp; [
aeson base bytestring http-streams lens text uuid wai wai-extra wreq aeson base bytestring http-streams lens text uuid wai wai-extra wreq
io-streams
])) ]))
]; ];
} }

View File

@ -22,6 +22,7 @@ library
aeson, aeson,
bytestring, bytestring,
http-streams, http-streams,
io-streams,
lens, lens,
text, text,
uuid, uuid,

View File

@ -1,5 +1,5 @@
{ mkDerivation, aeson, base, bytestring, lens, stdenv, text, wai { mkDerivation, aeson, base, bytestring, lens, stdenv, text, wai
, wai-extra, wreq, uuid , wai-extra, wreq, uuid, http-streams, io-streams
}: }:
mkDerivation { mkDerivation {
pname = "urbit-airlock"; pname = "urbit-airlock";