-
Notifications
You must be signed in to change notification settings - Fork 841
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
131 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{-# LANGUAGE NoImplicitPrelude #-} | ||
{-# LANGUAGE OverloadedStrings #-} | ||
|
||
module Stack.Freeze | ||
( freeze | ||
, FreezeOpts (..) | ||
, FreezeMode (..) | ||
) where | ||
|
||
import qualified Data.Yaml as Yaml | ||
import qualified RIO.ByteString as B | ||
import Stack.Prelude | ||
import Stack.Types.BuildPlan | ||
import Stack.Types.Config | ||
|
||
data FreezeMode = FreezeProject | FreezeSnapshot | ||
|
||
data FreezeOpts = FreezeOpts | ||
{ freezeMode :: FreezeMode | ||
} | ||
|
||
freeze :: HasEnvConfig env => FreezeOpts -> RIO env () | ||
freeze (FreezeOpts FreezeProject) = do | ||
mproject <- view $ configL.to configMaybeProject | ||
case mproject of | ||
Just (p, _) -> do | ||
let deps = projectDependencies p | ||
resolver = projectResolver p | ||
completePackageLocation' pl = | ||
case pl of | ||
PLImmutable pli -> PLImmutable <$> completePackageLocation pli | ||
plm@(PLMutable _) -> pure plm | ||
resolver' <- completeSnapshotLocation resolver | ||
deps' <- mapM completePackageLocation' deps | ||
when (deps' /= deps || resolver' /= resolver) $ | ||
liftIO $ B.putStr $ Yaml.encode p{ projectDependencies = deps' | ||
, projectResolver = resolver' | ||
} | ||
Nothing -> pure () | ||
|
||
freeze (FreezeOpts FreezeSnapshot) = do | ||
msnapshot <- view $ buildConfigL.to bcSnapshotDef.to sdSnapshot | ||
case msnapshot of | ||
Just (snap, _) -> do | ||
snap' <- completeSnapshot snap | ||
when (snap' /= snap) $ | ||
liftIO $ B.putStr $ Yaml.encode snap' | ||
Nothing -> | ||
return () |
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,16 @@ | ||
{-# LANGUAGE NoImplicitPrelude #-} | ||
|
||
module Stack.Options.FreezeParser where | ||
|
||
import Data.Semigroup ((<>)) | ||
import Options.Applicative | ||
import Stack.Freeze | ||
|
||
|
||
-- | Parser for arguments to `stack freeze` | ||
freezeOptsParser :: Parser FreezeOpts | ||
freezeOptsParser = | ||
FreezeOpts <$> flag FreezeProject FreezeSnapshot | ||
( long "snapshot" | ||
<> short 's' | ||
<> help "Freeze snapshot definition instead of project's stack.yaml" ) |
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,26 @@ | ||
import Control.Monad (unless) | ||
import StackTest | ||
|
||
main :: IO () | ||
main = do | ||
stackCheckStdout ["freeze"] $ \stdOut -> do | ||
let expected = unlines | ||
[ "packages:" | ||
, "- ." | ||
, "extra-deps:" | ||
, "- hackage: a50-0.5@sha256:b8dfcc13dcbb12e444128bb0e17527a2a7a9bd74ca9450d6f6862c4b394ac054,1491" | ||
, " pantry-tree:" | ||
, " size: 409" | ||
, " sha256: a7c6151a18b04afe1f13637627cad4deff91af51d336c4f33e95fc98c64c40d3" | ||
, "resolver:" | ||
, " blob:" | ||
, " size: 527165" | ||
, " sha256: 0116ad1779b20ad2c9d6620f172531f13b12bb69867e78f4277157e28865dfd4" | ||
, " url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/11/19.yaml" | ||
] | ||
unless (stdOut == expected) $ | ||
error $ concat [ "Expected: " | ||
, show expected | ||
, "\nActual: " | ||
, show stdOut | ||
] |
12 changes: 12 additions & 0 deletions
12
test/integration/tests/4220-freeze-command/files/freeze-command.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,12 @@ | ||
name: freeze-command | ||
version: 0.1.0.0 | ||
build-type: Simple | ||
cabal-version: >= 2.0 | ||
|
||
library | ||
exposed-modules: Src | ||
hs-source-dirs: src | ||
build-depends: base | ||
, rio | ||
, vector | ||
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,5 @@ | ||
module Src where | ||
|
||
-- | A function of the main library | ||
funMainLib :: Int -> Int | ||
funMainLib = succ |
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 @@ | ||
resolver: lts-11.19 | ||
packages: | ||
- . | ||
extra-deps: | ||
- a50-0.5 |