Skip to content

Commit 20e73a4

Browse files
author
kokobd
committed
no longer backup .ghcup in gitpod
1 parent 3393450 commit 20e73a4

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.gitpod.Dockerfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,16 @@ RUN sudo install-packages build-essential curl libffi-dev libffi7 libgmp-dev lib
88
echo 'source $HOME/.ghcup/env' >> $HOME/.bashrc && \
99
echo 'export PATH=$HOME/.cabal/bin:$HOME/.local/bin:$PATH' >> $HOME/.bashrc && \
1010
. /home/gitpod/.ghcup/env && \
11-
ghcup install ghc --set && \
11+
ghcup install ghc 8.6.5 && \
12+
ghcup install ghc 8.8.4 && \
13+
ghcup install ghc 8.10.7 && \
14+
ghcup install ghc 9.0.2 && \
15+
ghcup install ghc 9.2.2 && \
16+
ghcup install ghc 9.2.3 --set && \
1217
ghcup install hls --set && \
1318
ghcup install cabal --set && \
1419
ghcup install stack --set && \
1520
cabal update && \
16-
cabal install stylish-haskell hoogle implicit-hie && \
21+
cabal install --constraint "stylish-haskell +ghc-lib" stylish-haskell implicit-hie hoogle && \
1722
pip install pre-commit && \
1823
npm install -g http-server

.gitpod.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ tasks:
1010
$HOME/.local
1111
$HOME/.cabal
1212
$HOME/.stack
13-
$HOME/.ghcup
1413
/nix
1514
)
1615
for DIR in "${CACHE_DIRS[@]}"; do

0 commit comments

Comments
 (0)