-
Notifications
You must be signed in to change notification settings - Fork 843
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4609 from commercialhaskell/vanceism7-fix-3863
Make stack clean be more thorough by default (supersedes #4385)
- Loading branch information
Showing
9 changed files
with
100 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import StackTest | ||
import Data.Maybe (listToMaybe, fromMaybe) | ||
import System.Directory | ||
import System.FilePath | ||
|
||
main :: IO () | ||
main = | ||
-- For these commands, we'll need to know the `dist` directory. | ||
-- This is usually `.stack-work/dist/$compiler-variant/Cabal-xxxx` | ||
stackCheckStdout [defaultResolverArg, "path", "--dist-dir"] $ \distDir -> | ||
|
||
stackCheckStdout [defaultResolverArg, "path", "--local-install-root"] $ \localInstallRoot -> do | ||
|
||
-- Usually `.stack-work` | ||
let stackWork = fromMaybe (error "There must be a stack working directory.") $ | ||
listToMaybe (splitDirectories distDir) | ||
|
||
-- First, clean the .stack-work directory. | ||
-- This is only necessary when running individual tests. | ||
stack [defaultResolverArg, "purge"] | ||
doesNotExist stackWork | ||
|
||
-- The dist directory should exist after a build | ||
stack [defaultResolverArg, "build"] | ||
doesExist distDir | ||
doesExist localInstallRoot | ||
doesExist stackWork | ||
|
||
-- The dist directory should not exist after a clean, whereas the | ||
-- .stack-work directory should | ||
stack [defaultResolverArg, "clean"] | ||
run "exa" ["-T", ".stack-work"] | ||
doesNotExist distDir | ||
doesExist localInstallRoot | ||
doesExist stackWork | ||
|
||
-- The .stack-work directory should not exist after a purge | ||
stack [defaultResolverArg, "purge"] | ||
doesNotExist stackWork |
11 changes: 11 additions & 0 deletions
11
test/integration/tests/3863-purge-command/files/new-template.cabal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: new-template | ||
version: 0.1.0.0 | ||
build-type: Simple | ||
cabal-version: >=1.10 | ||
|
||
|
||
library | ||
hs-source-dirs: src | ||
exposed-modules: Lib | ||
build-depends: base >= 4.7 && < 5 | ||
default-language: Haskell2010 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module Lib where | ||
|
||
someFunc :: () | ||
someFunc = () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
flags: {} | ||
packages: | ||
- '.' | ||
extra-deps: [] | ||
resolver: lts-11.22 |