Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
1e32639873
|
|||
|
54af66d115
|
|||
|
850799c21a
|
|||
| d4834d7541 | |||
|
2895dd9d13
|
|||
|
eb9a0b66c4
|
|||
|
8d0432b961
|
|||
|
ab2c01d1c9
|
|||
|
4be97ffd7c
|
|||
|
009f9211a9
|
@@ -17,6 +17,8 @@ task:
|
|||||||
S3_HOST: ENCRYPTED[ce961780a33159f7d1d8046956b5ac6ebc3bfc8149428e5f538576cda51d9f3d0c35b79cdd1e325793639ff6e31f889d]
|
S3_HOST: ENCRYPTED[ce961780a33159f7d1d8046956b5ac6ebc3bfc8149428e5f538576cda51d9f3d0c35b79cdd1e325793639ff6e31f889d]
|
||||||
install_script: pkg install -y ghc hs-cabal-install git bash misc/compat10x misc/compat11x misc/compat12x gmake
|
install_script: pkg install -y ghc hs-cabal-install git bash misc/compat10x misc/compat11x misc/compat12x gmake
|
||||||
script:
|
script:
|
||||||
|
- tzsetup Etc/GMT
|
||||||
|
- adjkerntz -a
|
||||||
- bash .github/scripts/build.sh
|
- bash .github/scripts/build.sh
|
||||||
- bash .github/scripts/test.sh
|
- bash .github/scripts/test.sh
|
||||||
binaries_artifacts:
|
binaries_artifacts:
|
||||||
|
|||||||
18
.github/scripts/common.sh
vendored
18
.github/scripts/common.sh
vendored
@@ -88,28 +88,28 @@ download_cabal_cache() {
|
|||||||
case "${RUNNER_OS}" in
|
case "${RUNNER_OS}" in
|
||||||
"Linux")
|
"Linux")
|
||||||
case "${ARCH}" in
|
case "${ARCH}" in
|
||||||
"32") url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental4/i386-linux-cabal-cache
|
"32") url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental5/i386-linux-cabal-cache
|
||||||
;;
|
;;
|
||||||
"64") url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental4/x86_64-linux-cabal-cache
|
"64") url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental5/x86_64-linux-cabal-cache
|
||||||
;;
|
;;
|
||||||
"ARM64") url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental4/aarch64-linux-cabal-cache
|
"ARM64") url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental5/aarch64-linux-cabal-cache
|
||||||
;;
|
;;
|
||||||
"ARM") url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental4/armv7-linux-cabal-cache
|
"ARM") url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental5/armv7-linux-cabal-cache
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
"FreeBSD")
|
"FreeBSD")
|
||||||
url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental4/x86_64-portbld-freebsd-cabal-cache
|
url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental5/x86_64-portbld-freebsd-cabal-cache
|
||||||
;;
|
;;
|
||||||
"Windows")
|
"Windows")
|
||||||
exe=".exe"
|
exe=".exe"
|
||||||
url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental4/x86_64-mingw64-cabal-cache
|
url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental5/x86_64-mingw64-cabal-cache
|
||||||
;;
|
;;
|
||||||
"macOS")
|
"macOS")
|
||||||
case "${ARCH}" in
|
case "${ARCH}" in
|
||||||
"ARM64") url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental4/aarch64-apple-darwin-cabal-cache
|
"ARM64") url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental5/aarch64-apple-darwin-cabal-cache
|
||||||
;;
|
;;
|
||||||
"64") url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental4/x86_64-apple-darwin-cabal-cache
|
"64") url=https://downloads.haskell.org/~ghcup/unofficial-bindists/cabal-cache/experimental5/x86_64-apple-darwin-cabal-cache
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
@@ -151,7 +151,7 @@ install_ghcup() {
|
|||||||
chmod +x ghcup
|
chmod +x ghcup
|
||||||
mv ghcup "$HOME/.local/bin/ghcup"
|
mv ghcup "$HOME/.local/bin/ghcup"
|
||||||
else
|
else
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_MINIMAL=1 sh
|
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_MINIMAL=1 BOOTSTRAP_HASKELL_INSTALL_NO_STACK=yes sh
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -487,7 +487,7 @@ install' _ (_, ListResult {..}) = do
|
|||||||
pure $ Right ()
|
pure $ Right ()
|
||||||
VLeft (V (AlreadyInstalled _ _)) -> pure $ Right ()
|
VLeft (V (AlreadyInstalled _ _)) -> pure $ Right ()
|
||||||
VLeft (V NoUpdate) -> pure $ Right ()
|
VLeft (V NoUpdate) -> pure $ Right ()
|
||||||
VLeft e -> pure $ Left $ prettyShow e <> "\n"
|
VLeft e -> pure $ Left $ prettyHFError e <> "\n"
|
||||||
<> "Also check the logs in ~/.ghcup/logs"
|
<> "Also check the logs in ~/.ghcup/logs"
|
||||||
|
|
||||||
|
|
||||||
@@ -524,7 +524,7 @@ set' bs input@(_, ListResult {..}) = do
|
|||||||
logInfo "Setting now..."
|
logInfo "Setting now..."
|
||||||
set' bs input
|
set' bs input
|
||||||
|
|
||||||
PromptNo -> pure $ Left (prettyShow e)
|
PromptNo -> pure $ Left (prettyHFError e)
|
||||||
where
|
where
|
||||||
userPrompt = L.toStrict . B.toLazyText . B.fromString $
|
userPrompt = L.toStrict . B.toLazyText . B.fromString $
|
||||||
"This Version of "
|
"This Version of "
|
||||||
@@ -532,7 +532,7 @@ set' bs input@(_, ListResult {..}) = do
|
|||||||
<> " you are trying to set is not installed.\n"
|
<> " you are trying to set is not installed.\n"
|
||||||
<> "Would you like to install it first? [Y/N]: "
|
<> "Would you like to install it first? [Y/N]: "
|
||||||
|
|
||||||
_ -> pure $ Left (prettyShow e)
|
_ -> pure $ Left (prettyHFError e)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -560,7 +560,7 @@ del' _ (_, ListResult {..}) = do
|
|||||||
forM_ (_viPostRemove =<< vi) $ \msg ->
|
forM_ (_viPostRemove =<< vi) $ \msg ->
|
||||||
logInfo msg
|
logInfo msg
|
||||||
pure $ Right ()
|
pure $ Right ()
|
||||||
VLeft e -> pure $ Left (prettyShow e)
|
VLeft e -> pure $ Left (prettyHFError e)
|
||||||
|
|
||||||
|
|
||||||
changelog' :: (MonadReader AppState m, MonadIO m)
|
changelog' :: (MonadReader AppState m, MonadIO m)
|
||||||
@@ -580,7 +580,7 @@ changelog' _ (_, ListResult {..}) = do
|
|||||||
Windows -> "start"
|
Windows -> "start"
|
||||||
exec cmd [T.unpack $ decUTF8Safe $ serializeURIRef' uri] Nothing Nothing >>= \case
|
exec cmd [T.unpack $ decUTF8Safe $ serializeURIRef' uri] Nothing Nothing >>= \case
|
||||||
Right _ -> pure $ Right ()
|
Right _ -> pure $ Right ()
|
||||||
Left e -> pure $ Left $ prettyShow e
|
Left e -> pure $ Left $ prettyHFError e
|
||||||
|
|
||||||
|
|
||||||
settings' :: IORef AppState
|
settings' :: IORef AppState
|
||||||
@@ -638,7 +638,7 @@ getGHCupInfo = do
|
|||||||
|
|
||||||
case r of
|
case r of
|
||||||
VRight a -> pure $ Right a
|
VRight a -> pure $ Right a
|
||||||
VLeft e -> pure $ Left (prettyShow e)
|
VLeft e -> pure $ Left (prettyHFError e)
|
||||||
|
|
||||||
|
|
||||||
getAppData :: Maybe GHCupInfo
|
getAppData :: Maybe GHCupInfo
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
module GHCup.OptParse (
|
module GHCup.OptParse (
|
||||||
module GHCup.OptParse.Common
|
module GHCup.OptParse.Common
|
||||||
, module GHCup.OptParse.Install
|
, module GHCup.OptParse.Install
|
||||||
|
, module GHCup.OptParse.Test
|
||||||
, module GHCup.OptParse.Set
|
, module GHCup.OptParse.Set
|
||||||
, module GHCup.OptParse.UnSet
|
, module GHCup.OptParse.UnSet
|
||||||
, module GHCup.OptParse.Rm
|
, module GHCup.OptParse.Rm
|
||||||
@@ -31,6 +32,7 @@ module GHCup.OptParse (
|
|||||||
|
|
||||||
import GHCup.OptParse.Common
|
import GHCup.OptParse.Common
|
||||||
import GHCup.OptParse.Install
|
import GHCup.OptParse.Install
|
||||||
|
import GHCup.OptParse.Test
|
||||||
import GHCup.OptParse.Set
|
import GHCup.OptParse.Set
|
||||||
import GHCup.OptParse.UnSet
|
import GHCup.OptParse.UnSet
|
||||||
import GHCup.OptParse.Rm
|
import GHCup.OptParse.Rm
|
||||||
@@ -87,6 +89,7 @@ data Options = Options
|
|||||||
|
|
||||||
data Command
|
data Command
|
||||||
= Install (Either InstallCommand InstallOptions)
|
= Install (Either InstallCommand InstallOptions)
|
||||||
|
| Test TestCommand
|
||||||
| InstallCabalLegacy InstallOptions
|
| InstallCabalLegacy InstallOptions
|
||||||
| Set (Either SetCommand SetOptions)
|
| Set (Either SetCommand SetOptions)
|
||||||
| UnSet UnsetCommand
|
| UnSet UnsetCommand
|
||||||
@@ -108,6 +111,7 @@ data Command
|
|||||||
| Prefetch PrefetchCommand
|
| Prefetch PrefetchCommand
|
||||||
| GC GCOptions
|
| GC GCOptions
|
||||||
| Run RunOptions
|
| Run RunOptions
|
||||||
|
| PrintAppErrors
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -204,6 +208,14 @@ com =
|
|||||||
<> footerDoc (Just $ text installToolFooter)
|
<> footerDoc (Just $ text installToolFooter)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
<> command
|
||||||
|
"test"
|
||||||
|
(info
|
||||||
|
(Test <$> testParser <**> helper)
|
||||||
|
( progDesc "Run tests for a tool (if any) [EXPERIMENTAL!]"
|
||||||
|
<> footerDoc (Just $ text testFooter)
|
||||||
|
)
|
||||||
|
)
|
||||||
<> command
|
<> command
|
||||||
"set"
|
"set"
|
||||||
(info
|
(info
|
||||||
@@ -341,3 +353,10 @@ com =
|
|||||||
<> commandGroup "Nuclear Commands:"
|
<> commandGroup "Nuclear Commands:"
|
||||||
<> hidden
|
<> hidden
|
||||||
)
|
)
|
||||||
|
<|> subparser
|
||||||
|
(command
|
||||||
|
"print-app-errors"
|
||||||
|
(info (pure PrintAppErrors <**> helper)
|
||||||
|
(progDesc ""))
|
||||||
|
<> internal
|
||||||
|
)
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ module GHCup.OptParse.ChangeLog where
|
|||||||
|
|
||||||
|
|
||||||
import GHCup.Types
|
import GHCup.Types
|
||||||
|
import GHCup.Errors
|
||||||
import GHCup.OptParse.Common
|
import GHCup.OptParse.Common
|
||||||
import GHCup.Prelude
|
import GHCup.Prelude
|
||||||
import GHCup.Prelude.Logger
|
import GHCup.Prelude.Logger
|
||||||
@@ -148,6 +149,6 @@ changelog ChangeLogOptions{..} runAppState runLogger = do
|
|||||||
Nothing
|
Nothing
|
||||||
>>= \case
|
>>= \case
|
||||||
Right _ -> pure ExitSuccess
|
Right _ -> pure ExitSuccess
|
||||||
Left e -> logError (T.pack $ prettyShow e)
|
Left e -> logError (T.pack $ prettyHFError e)
|
||||||
>> pure (ExitFailure 13)
|
>> pure (ExitFailure 13)
|
||||||
else liftIO $ putStrLn uri' >> pure ExitSuccess
|
else liftIO $ putStrLn uri' >> pure ExitSuccess
|
||||||
|
|||||||
@@ -40,7 +40,6 @@ import Options.Applicative hiding ( style )
|
|||||||
import Options.Applicative.Help.Pretty ( text )
|
import Options.Applicative.Help.Pretty ( text )
|
||||||
import Prelude hiding ( appendFile )
|
import Prelude hiding ( appendFile )
|
||||||
import System.Exit
|
import System.Exit
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow )
|
|
||||||
|
|
||||||
import URI.ByteString hiding ( uriParser )
|
import URI.ByteString hiding ( uriParser )
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
@@ -546,14 +545,14 @@ compile compileCommand settings Dirs{..} runAppState runLogger = do
|
|||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft err@(V (BuildFailed tmpdir _)) -> do
|
VLeft err@(V (BuildFailed tmpdir _)) -> do
|
||||||
case keepDirs settings of
|
case keepDirs settings of
|
||||||
Never -> runLogger $ logError $ T.pack $ prettyShow err
|
Never -> runLogger $ logError $ T.pack $ prettyHFError err
|
||||||
_ -> runLogger (logError $ T.pack (prettyShow err) <> "\n" <>
|
_ -> runLogger (logError $ T.pack (prettyHFError err) <> "\n" <>
|
||||||
"Check the logs at " <> T.pack (fromGHCupPath logsDir) <> " and the build directory "
|
"Check the logs at " <> T.pack (fromGHCupPath logsDir) <> " and the build directory "
|
||||||
<> T.pack tmpdir <> " for more clues." <> "\n" <>
|
<> T.pack tmpdir <> " for more clues." <> "\n" <>
|
||||||
"Make sure to clean up " <> T.pack tmpdir <> " afterwards.")
|
"Make sure to clean up " <> T.pack tmpdir <> " afterwards.")
|
||||||
pure $ ExitFailure 9
|
pure $ ExitFailure 9
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 9
|
pure $ ExitFailure 9
|
||||||
(CompileGHC GHCCompileOptions { hadrian = True, crossTarget = Just _ }) -> do
|
(CompileGHC GHCCompileOptions { hadrian = True, crossTarget = Just _ }) -> do
|
||||||
runLogger $ logError "Hadrian cross compile support is not yet implemented!"
|
runLogger $ logError "Hadrian cross compile support is not yet implemented!"
|
||||||
@@ -608,12 +607,12 @@ compile compileCommand settings Dirs{..} runAppState runLogger = do
|
|||||||
pure $ ExitFailure 3
|
pure $ ExitFailure 3
|
||||||
VLeft err@(V (BuildFailed tmpdir _)) -> do
|
VLeft err@(V (BuildFailed tmpdir _)) -> do
|
||||||
case keepDirs settings of
|
case keepDirs settings of
|
||||||
Never -> runLogger $ logError $ T.pack $ prettyShow err
|
Never -> runLogger $ logError $ T.pack $ prettyHFError err
|
||||||
_ -> runLogger (logError $ T.pack (prettyShow err) <> "\n" <>
|
_ -> runLogger (logError $ T.pack (prettyHFError err) <> "\n" <>
|
||||||
"Check the logs at " <> T.pack (fromGHCupPath logsDir) <> " and the build directory "
|
"Check the logs at " <> T.pack (fromGHCupPath logsDir) <> " and the build directory "
|
||||||
<> T.pack tmpdir <> " for more clues." <> "\n" <>
|
<> T.pack tmpdir <> " for more clues." <> "\n" <>
|
||||||
"Make sure to clean up " <> T.pack tmpdir <> " afterwards.")
|
"Make sure to clean up " <> T.pack tmpdir <> " afterwards.")
|
||||||
pure $ ExitFailure 9
|
pure $ ExitFailure 9
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 9
|
pure $ ExitFailure 9
|
||||||
|
|||||||
@@ -115,5 +115,5 @@ dinfo runAppState runLogger = do
|
|||||||
liftIO $ putStrLn $ prettyDebugInfo di
|
liftIO $ putStrLn $ prettyDebugInfo di
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 8
|
pure $ ExitFailure 8
|
||||||
|
|||||||
@@ -27,7 +27,6 @@ import Haskus.Utils.Variant.Excepts
|
|||||||
import Options.Applicative hiding ( style )
|
import Options.Applicative hiding ( style )
|
||||||
import Prelude hiding ( appendFile )
|
import Prelude hiding ( appendFile )
|
||||||
import System.Exit
|
import System.Exit
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow )
|
|
||||||
|
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import Control.Exception.Safe (MonadMask)
|
import Control.Exception.Safe (MonadMask)
|
||||||
@@ -139,5 +138,5 @@ gc GCOptions{..} runAppState runLogger = runGC runAppState (do
|
|||||||
VRight _ -> do
|
VRight _ -> do
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 27
|
pure $ ExitFailure 27
|
||||||
|
|||||||
@@ -38,7 +38,6 @@ import Options.Applicative hiding ( style )
|
|||||||
import Options.Applicative.Help.Pretty ( text )
|
import Options.Applicative.Help.Pretty ( text )
|
||||||
import Prelude hiding ( appendFile )
|
import Prelude hiding ( appendFile )
|
||||||
import System.Exit
|
import System.Exit
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow )
|
|
||||||
import URI.ByteString hiding ( uriParser )
|
import URI.ByteString hiding ( uriParser )
|
||||||
|
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
@@ -351,10 +350,10 @@ install installCommand settings getAppState' runLogger = case installCommand of
|
|||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
|
|
||||||
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
||||||
runLogger $ logWarn $ T.pack $ prettyShow e
|
runLogger $ logWarn $ T.pack $ prettyHFError e
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
||||||
runLogger $ logWarn $ T.pack $ prettyShow e
|
runLogger $ logWarn $ T.pack $ prettyHFError e
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
|
|
||||||
VLeft (V (DirNotEmpty fp)) -> do
|
VLeft (V (DirNotEmpty fp)) -> do
|
||||||
@@ -368,22 +367,22 @@ install installCommand settings getAppState' runLogger = case installCommand of
|
|||||||
|
|
||||||
VLeft err@(V (BuildFailed tmpdir _)) -> do
|
VLeft err@(V (BuildFailed tmpdir _)) -> do
|
||||||
case keepDirs settings of
|
case keepDirs settings of
|
||||||
Never -> runLogger (logError $ T.pack $ prettyShow err)
|
Never -> runLogger (logError $ T.pack $ prettyHFError err)
|
||||||
_ -> runLogger (logError $ T.pack (prettyShow err) <> "\n" <>
|
_ -> runLogger (logError $ T.pack (prettyHFError err) <> "\n" <>
|
||||||
"Check the logs at " <> T.pack (fromGHCupPath logsDir) <> " and the build directory " <> T.pack tmpdir <> " for more clues." <> "\n" <>
|
"Check the logs at " <> T.pack (fromGHCupPath logsDir) <> " and the build directory " <> T.pack tmpdir <> " for more clues." <> "\n" <>
|
||||||
"Make sure to clean up " <> T.pack tmpdir <> " afterwards.")
|
"Make sure to clean up " <> T.pack tmpdir <> " afterwards.")
|
||||||
pure $ ExitFailure 3
|
pure $ ExitFailure 3
|
||||||
VLeft err@(V (BuildFailed tmpdir _)) -> do
|
VLeft err@(V (BuildFailed tmpdir _)) -> do
|
||||||
case keepDirs settings of
|
case keepDirs settings of
|
||||||
Never -> runLogger (logError $ T.pack $ prettyShow err)
|
Never -> runLogger (logError $ T.pack $ prettyHFError err)
|
||||||
_ -> runLogger (logError $ T.pack (prettyShow err) <> "\n" <>
|
_ -> runLogger (logError $ T.pack (prettyHFError err) <> "\n" <>
|
||||||
"Check the logs at " <> T.pack (fromGHCupPath logsDir) <> " and the build directory " <> T.pack tmpdir <> " for more clues." <> "\n" <>
|
"Check the logs at " <> T.pack (fromGHCupPath logsDir) <> " and the build directory " <> T.pack tmpdir <> " for more clues." <> "\n" <>
|
||||||
"Make sure to clean up " <> T.pack tmpdir <> " afterwards.")
|
"Make sure to clean up " <> T.pack tmpdir <> " afterwards.")
|
||||||
pure $ ExitFailure 3
|
pure $ ExitFailure 3
|
||||||
|
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ do
|
runLogger $ do
|
||||||
logError $ T.pack $ prettyShow e
|
logError $ T.pack $ prettyHFError e
|
||||||
logError $ "Also check the logs in " <> T.pack (fromGHCupPath logsDir)
|
logError $ "Also check the logs in " <> T.pack (fromGHCupPath logsDir)
|
||||||
pure $ ExitFailure 3
|
pure $ ExitFailure 3
|
||||||
|
|
||||||
@@ -418,14 +417,14 @@ install installCommand settings getAppState' runLogger = case installCommand of
|
|||||||
runLogger $ logInfo msg
|
runLogger $ logInfo msg
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
||||||
runLogger $ logWarn $ T.pack $ prettyShow e
|
runLogger $ logWarn $ T.pack $ prettyHFError e
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft (V (FileAlreadyExistsError fp)) -> do
|
VLeft (V (FileAlreadyExistsError fp)) -> do
|
||||||
runLogger $ logWarn $
|
runLogger $ logWarn $
|
||||||
"File " <> T.pack fp <> " already exists. Use 'ghcup install cabal --isolate " <> T.pack fp <> " --force ..." <> "' if you want to overwrite."
|
"File " <> T.pack fp <> " already exists. Use 'ghcup install cabal --isolate " <> T.pack fp <> " --force ..." <> "' if you want to overwrite."
|
||||||
pure $ ExitFailure 3
|
pure $ ExitFailure 3
|
||||||
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
||||||
runLogger $ logWarn $ T.pack $ prettyShow e
|
runLogger $ logWarn $ T.pack $ prettyHFError e
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft (V (FileAlreadyExistsError fp)) -> do
|
VLeft (V (FileAlreadyExistsError fp)) -> do
|
||||||
runLogger $ logWarn $
|
runLogger $ logWarn $
|
||||||
@@ -433,7 +432,7 @@ install installCommand settings getAppState' runLogger = case installCommand of
|
|||||||
pure $ ExitFailure 3
|
pure $ ExitFailure 3
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ do
|
runLogger $ do
|
||||||
logError $ T.pack $ prettyShow e
|
logError $ T.pack $ prettyHFError e
|
||||||
logError $ "Also check the logs in " <> T.pack (fromGHCupPath logsDir)
|
logError $ "Also check the logs in " <> T.pack (fromGHCupPath logsDir)
|
||||||
pure $ ExitFailure 4
|
pure $ ExitFailure 4
|
||||||
|
|
||||||
@@ -468,14 +467,14 @@ install installCommand settings getAppState' runLogger = case installCommand of
|
|||||||
runLogger $ logInfo msg
|
runLogger $ logInfo msg
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
||||||
runLogger $ logWarn $ T.pack $ prettyShow e
|
runLogger $ logWarn $ T.pack $ prettyHFError e
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft (V (FileAlreadyExistsError fp)) -> do
|
VLeft (V (FileAlreadyExistsError fp)) -> do
|
||||||
runLogger $ logWarn $
|
runLogger $ logWarn $
|
||||||
"File " <> T.pack fp <> " already exists. Use 'ghcup install hls --isolate " <> T.pack fp <> " --force ..." <> "' if you want to overwrite."
|
"File " <> T.pack fp <> " already exists. Use 'ghcup install hls --isolate " <> T.pack fp <> " --force ..." <> "' if you want to overwrite."
|
||||||
pure $ ExitFailure 3
|
pure $ ExitFailure 3
|
||||||
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
||||||
runLogger $ logWarn $ T.pack $ prettyShow e
|
runLogger $ logWarn $ T.pack $ prettyHFError e
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft (V (FileAlreadyExistsError fp)) -> do
|
VLeft (V (FileAlreadyExistsError fp)) -> do
|
||||||
runLogger $ logWarn $
|
runLogger $ logWarn $
|
||||||
@@ -483,7 +482,7 @@ install installCommand settings getAppState' runLogger = case installCommand of
|
|||||||
pure $ ExitFailure 3
|
pure $ ExitFailure 3
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ do
|
runLogger $ do
|
||||||
logError $ T.pack $ prettyShow e
|
logError $ T.pack $ prettyHFError e
|
||||||
logError $ "Also check the logs in " <> T.pack (fromGHCupPath logsDir)
|
logError $ "Also check the logs in " <> T.pack (fromGHCupPath logsDir)
|
||||||
pure $ ExitFailure 4
|
pure $ ExitFailure 4
|
||||||
|
|
||||||
@@ -517,14 +516,14 @@ install installCommand settings getAppState' runLogger = case installCommand of
|
|||||||
runLogger $ logInfo msg
|
runLogger $ logInfo msg
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
||||||
runLogger $ logWarn $ T.pack $ prettyShow e
|
runLogger $ logWarn $ T.pack $ prettyHFError e
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft (V (FileAlreadyExistsError fp)) -> do
|
VLeft (V (FileAlreadyExistsError fp)) -> do
|
||||||
runLogger $ logWarn $
|
runLogger $ logWarn $
|
||||||
"File " <> T.pack fp <> " already exists. Use 'ghcup install stack --isolate " <> T.pack fp <> " --force ..." <> "' if you want to overwrite."
|
"File " <> T.pack fp <> " already exists. Use 'ghcup install stack --isolate " <> T.pack fp <> " --force ..." <> "' if you want to overwrite."
|
||||||
pure $ ExitFailure 3
|
pure $ ExitFailure 3
|
||||||
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
VLeft e@(V (AlreadyInstalled _ _)) -> do
|
||||||
runLogger $ logWarn $ T.pack $ prettyShow e
|
runLogger $ logWarn $ T.pack $ prettyHFError e
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft (V (FileAlreadyExistsError fp)) -> do
|
VLeft (V (FileAlreadyExistsError fp)) -> do
|
||||||
runLogger $ logWarn $
|
runLogger $ logWarn $
|
||||||
@@ -532,6 +531,6 @@ install installCommand settings getAppState' runLogger = case installCommand of
|
|||||||
pure $ ExitFailure 3
|
pure $ ExitFailure 3
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ do
|
runLogger $ do
|
||||||
logError $ T.pack $ prettyShow e
|
logError $ T.pack $ prettyHFError e
|
||||||
logError $ "Also check the logs in " <> T.pack (fromGHCupPath logsDir)
|
logError $ "Also check the logs in " <> T.pack (fromGHCupPath logsDir)
|
||||||
pure $ ExitFailure 4
|
pure $ ExitFailure 4
|
||||||
|
|||||||
@@ -26,7 +26,6 @@ import Haskus.Utils.Variant.Excepts
|
|||||||
import Options.Applicative hiding ( style )
|
import Options.Applicative hiding ( style )
|
||||||
import Prelude hiding ( appendFile )
|
import Prelude hiding ( appendFile )
|
||||||
import System.Exit
|
import System.Exit
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow )
|
|
||||||
|
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import Control.Exception.Safe (MonadMask)
|
import Control.Exception.Safe (MonadMask)
|
||||||
@@ -95,5 +94,5 @@ nuke appState runLogger = do
|
|||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
|
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 15
|
pure $ ExitFailure 15
|
||||||
|
|||||||
@@ -30,7 +30,6 @@ import Haskus.Utils.Variant.Excepts
|
|||||||
import Options.Applicative hiding ( style )
|
import Options.Applicative hiding ( style )
|
||||||
import Prelude hiding ( appendFile )
|
import Prelude hiding ( appendFile )
|
||||||
import System.Exit
|
import System.Exit
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow )
|
|
||||||
|
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import Control.Exception.Safe (MonadMask)
|
import Control.Exception.Safe (MonadMask)
|
||||||
@@ -216,5 +215,5 @@ prefetch prefetchCommand runAppState runLogger =
|
|||||||
VRight _ -> do
|
VRight _ -> do
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 15
|
pure $ ExitFailure 15
|
||||||
|
|||||||
@@ -34,7 +34,6 @@ import Haskus.Utils.Variant.Excepts
|
|||||||
import Options.Applicative hiding ( style )
|
import Options.Applicative hiding ( style )
|
||||||
import Prelude hiding ( appendFile )
|
import Prelude hiding ( appendFile )
|
||||||
import System.Exit
|
import System.Exit
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow )
|
|
||||||
|
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import Control.Exception.Safe (MonadMask)
|
import Control.Exception.Safe (MonadMask)
|
||||||
@@ -179,7 +178,7 @@ rm rmCommand runAppState runLogger = case rmCommand of
|
|||||||
postRmLog vi
|
postRmLog vi
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 7
|
pure $ ExitFailure 7
|
||||||
|
|
||||||
rmCabal' tv =
|
rmCabal' tv =
|
||||||
@@ -194,7 +193,7 @@ rm rmCommand runAppState runLogger = case rmCommand of
|
|||||||
postRmLog vi
|
postRmLog vi
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 15
|
pure $ ExitFailure 15
|
||||||
|
|
||||||
rmHLS' tv =
|
rmHLS' tv =
|
||||||
@@ -209,7 +208,7 @@ rm rmCommand runAppState runLogger = case rmCommand of
|
|||||||
postRmLog vi
|
postRmLog vi
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 15
|
pure $ ExitFailure 15
|
||||||
|
|
||||||
rmStack' tv =
|
rmStack' tv =
|
||||||
@@ -224,7 +223,7 @@ rm rmCommand runAppState runLogger = case rmCommand of
|
|||||||
postRmLog vi
|
postRmLog vi
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 15
|
pure $ ExitFailure 15
|
||||||
|
|
||||||
postRmLog vi =
|
postRmLog vi =
|
||||||
|
|||||||
@@ -40,7 +40,6 @@ import Prelude hiding ( appendFile )
|
|||||||
import System.FilePath
|
import System.FilePath
|
||||||
import System.Environment
|
import System.Environment
|
||||||
import System.Exit
|
import System.Exit
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow )
|
|
||||||
|
|
||||||
import qualified Data.Map.Strict as Map
|
import qualified Data.Map.Strict as Map
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
@@ -255,7 +254,7 @@ run RunOptions{..} runAppState leanAppstate runLogger = do
|
|||||||
liftIO $ putStr tmp
|
liftIO $ putStr tmp
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
(cmd:args) -> do
|
(cmd:args) -> do
|
||||||
newEnv <- liftIO $ addToPath tmp
|
newEnv <- liftIO $ addToPath tmp runAppendPATH
|
||||||
#ifndef IS_WINDOWS
|
#ifndef IS_WINDOWS
|
||||||
void $ liftIO $ SPP.executeFile cmd True args (Just newEnv)
|
void $ liftIO $ SPP.executeFile cmd True args (Just newEnv)
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
@@ -266,11 +265,11 @@ run RunOptions{..} runAppState leanAppstate runLogger = do
|
|||||||
case r' of
|
case r' of
|
||||||
VRight _ -> pure ExitSuccess
|
VRight _ -> pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 28
|
pure $ ExitFailure 28
|
||||||
#endif
|
#endif
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 27
|
pure $ ExitFailure 27
|
||||||
|
|
||||||
where
|
where
|
||||||
@@ -442,17 +441,6 @@ run RunOptions{..} runAppState leanAppstate runLogger = do
|
|||||||
liftE $ setHLS v SetHLS_XYZ (Just tmp)
|
liftE $ setHLS v SetHLS_XYZ (Just tmp)
|
||||||
liftE $ setHLS v SetHLSOnly (Just tmp)
|
liftE $ setHLS v SetHLSOnly (Just tmp)
|
||||||
|
|
||||||
addToPath path = do
|
|
||||||
cEnv <- Map.fromList <$> getEnvironment
|
|
||||||
let paths = ["PATH", "Path"]
|
|
||||||
curPaths = (\x -> maybe [] splitSearchPath (Map.lookup x cEnv)) =<< paths
|
|
||||||
newPath = intercalate [searchPathSeparator] (if runAppendPATH then (curPaths ++ [path]) else (path : curPaths))
|
|
||||||
envWithoutPath = foldr (\x y -> Map.delete x y) cEnv paths
|
|
||||||
pathVar = if isWindows then "Path" else "PATH"
|
|
||||||
envWithNewPath = Map.toList $ Map.insert pathVar newPath envWithoutPath
|
|
||||||
liftIO $ setEnv pathVar newPath
|
|
||||||
return envWithNewPath
|
|
||||||
|
|
||||||
createTmpDir :: ( MonadUnliftIO m
|
createTmpDir :: ( MonadUnliftIO m
|
||||||
, MonadCatch m
|
, MonadCatch m
|
||||||
, MonadThrow m
|
, MonadThrow m
|
||||||
|
|||||||
@@ -35,7 +35,6 @@ import Options.Applicative hiding ( style )
|
|||||||
import Options.Applicative.Help.Pretty ( text )
|
import Options.Applicative.Help.Pretty ( text )
|
||||||
import Prelude hiding ( appendFile )
|
import Prelude hiding ( appendFile )
|
||||||
import System.Exit
|
import System.Exit
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow )
|
|
||||||
|
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import Data.Bifunctor (second)
|
import Data.Bifunctor (second)
|
||||||
@@ -286,7 +285,7 @@ set setCommand runAppState runLeanAppState runLogger = case setCommand of
|
|||||||
"GHC " <> prettyVer _tvVersion <> " successfully set as default version" <> maybe "" (" for cross target " <>) _tvTarget
|
"GHC " <> prettyVer _tvVersion <> " successfully set as default version" <> maybe "" (" for cross target " <>) _tvTarget
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 5
|
pure $ ExitFailure 5
|
||||||
|
|
||||||
|
|
||||||
@@ -307,7 +306,7 @@ set setCommand runAppState runLeanAppState runLogger = case setCommand of
|
|||||||
"Cabal " <> prettyVer (_tvVersion v) <> " successfully set as default version"
|
"Cabal " <> prettyVer (_tvVersion v) <> " successfully set as default version"
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 14
|
pure $ ExitFailure 14
|
||||||
|
|
||||||
setHLS' :: SetOptions
|
setHLS' :: SetOptions
|
||||||
@@ -327,7 +326,7 @@ set setCommand runAppState runLeanAppState runLogger = case setCommand of
|
|||||||
"HLS " <> prettyVer (_tvVersion v) <> " successfully set as default version"
|
"HLS " <> prettyVer (_tvVersion v) <> " successfully set as default version"
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 14
|
pure $ ExitFailure 14
|
||||||
|
|
||||||
|
|
||||||
@@ -348,5 +347,5 @@ set setCommand runAppState runLeanAppState runLogger = case setCommand of
|
|||||||
"Stack " <> prettyVer (_tvVersion v) <> " successfully set as default version"
|
"Stack " <> prettyVer (_tvVersion v) <> " successfully set as default version"
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 14
|
pure $ ExitFailure 14
|
||||||
|
|||||||
188
app/ghcup/GHCup/OptParse/Test.hs
Normal file
188
app/ghcup/GHCup/OptParse/Test.hs
Normal file
@@ -0,0 +1,188 @@
|
|||||||
|
{-# LANGUAGE CPP #-}
|
||||||
|
{-# LANGUAGE DataKinds #-}
|
||||||
|
{-# LANGUAGE TypeApplications #-}
|
||||||
|
{-# LANGUAGE FlexibleContexts #-}
|
||||||
|
{-# LANGUAGE TemplateHaskell #-}
|
||||||
|
{-# LANGUAGE QuasiQuotes #-}
|
||||||
|
{-# LANGUAGE OverloadedStrings #-}
|
||||||
|
{-# LANGUAGE DuplicateRecordFields #-}
|
||||||
|
{-# LANGUAGE ViewPatterns #-}
|
||||||
|
{-# LANGUAGE TypeOperators #-}
|
||||||
|
|
||||||
|
module GHCup.OptParse.Test where
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
import GHCup.OptParse.Common
|
||||||
|
|
||||||
|
import GHCup
|
||||||
|
import GHCup.Errors
|
||||||
|
import GHCup.Types
|
||||||
|
import GHCup.Utils.Dirs
|
||||||
|
import GHCup.Prelude.Logger
|
||||||
|
import GHCup.Prelude.String.QQ
|
||||||
|
|
||||||
|
import Codec.Archive
|
||||||
|
#if !MIN_VERSION_base(4,13,0)
|
||||||
|
import Control.Monad.Fail ( MonadFail )
|
||||||
|
#endif
|
||||||
|
import Control.Monad.Reader
|
||||||
|
import Control.Monad.Trans.Resource
|
||||||
|
import Data.Functor
|
||||||
|
import Data.Maybe
|
||||||
|
import Haskus.Utils.Variant.Excepts
|
||||||
|
import Options.Applicative hiding ( style )
|
||||||
|
import Options.Applicative.Help.Pretty ( text )
|
||||||
|
import Prelude hiding ( appendFile )
|
||||||
|
import System.Exit
|
||||||
|
import URI.ByteString hiding ( uriParser )
|
||||||
|
|
||||||
|
import qualified Data.Text as T
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
----------------
|
||||||
|
--[ Commands ]--
|
||||||
|
----------------
|
||||||
|
|
||||||
|
|
||||||
|
data TestCommand = TestGHC TestOptions
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
---------------
|
||||||
|
--[ Options ]--
|
||||||
|
---------------
|
||||||
|
|
||||||
|
|
||||||
|
data TestOptions = TestOptions
|
||||||
|
{ testVer :: Maybe ToolVersion
|
||||||
|
, testBindist :: Maybe URI
|
||||||
|
, addMakeArgs :: [T.Text]
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
---------------
|
||||||
|
--[ Footers ]--
|
||||||
|
---------------
|
||||||
|
|
||||||
|
testFooter :: String
|
||||||
|
testFooter = [s|Discussion:
|
||||||
|
Runs test suites from the test bindist.|]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
---------------
|
||||||
|
--[ Parsers ]--
|
||||||
|
---------------
|
||||||
|
|
||||||
|
testParser :: Parser TestCommand
|
||||||
|
testParser =
|
||||||
|
subparser
|
||||||
|
( command
|
||||||
|
"ghc"
|
||||||
|
( TestGHC
|
||||||
|
<$> info
|
||||||
|
(testOpts (Just GHC) <**> helper)
|
||||||
|
( progDesc "Test GHC"
|
||||||
|
<> footerDoc (Just $ text testGHCFooter)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
where
|
||||||
|
testGHCFooter :: String
|
||||||
|
testGHCFooter = [s|Discussion:
|
||||||
|
Runs the GHC test suite from the test bindist.|]
|
||||||
|
|
||||||
|
|
||||||
|
testOpts :: Maybe Tool -> Parser TestOptions
|
||||||
|
testOpts tool =
|
||||||
|
(\(u, v) args -> TestOptions v u args)
|
||||||
|
<$> ( ( (,)
|
||||||
|
<$> optional
|
||||||
|
(option
|
||||||
|
(eitherReader uriParser)
|
||||||
|
(short 'u' <> long "url" <> metavar "BINDIST_URL" <> help
|
||||||
|
"Install the specified version from this bindist"
|
||||||
|
<> completer (toolDlCompleter (fromMaybe GHC tool))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
<*> (Just <$> toolVersionTagArgument Nothing tool)
|
||||||
|
)
|
||||||
|
<|> pure (Nothing, Nothing)
|
||||||
|
)
|
||||||
|
<*> many (argument str (metavar "MAKE_ARGS" <> help "Additional arguments to 'make', prefix with '-- ' (longopts)"))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
---------------------------
|
||||||
|
--[ Effect interpreters ]--
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
type TestGHCEffects = [ DigestError
|
||||||
|
, ContentLengthError
|
||||||
|
, GPGError
|
||||||
|
, DownloadFailed
|
||||||
|
, NoDownload
|
||||||
|
, ArchiveResult
|
||||||
|
, TarDirDoesNotExist
|
||||||
|
, UnknownArchive
|
||||||
|
, TestFailed
|
||||||
|
, NextVerNotFound
|
||||||
|
, TagNotFound
|
||||||
|
, NoToolVersionSet
|
||||||
|
]
|
||||||
|
|
||||||
|
runTestGHC :: AppState
|
||||||
|
-> Excepts TestGHCEffects (ResourceT (ReaderT AppState IO)) a
|
||||||
|
-> IO (VEither TestGHCEffects a)
|
||||||
|
runTestGHC appstate' =
|
||||||
|
flip runReaderT appstate'
|
||||||
|
. runResourceT
|
||||||
|
. runE
|
||||||
|
@TestGHCEffects
|
||||||
|
|
||||||
|
|
||||||
|
-------------------
|
||||||
|
--[ Entrypoints ]--
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
|
||||||
|
test :: TestCommand -> Settings -> IO AppState -> (ReaderT LeanAppState IO () -> IO ()) -> IO ExitCode
|
||||||
|
test testCommand settings getAppState' runLogger = case testCommand of
|
||||||
|
(TestGHC iopts) -> go iopts
|
||||||
|
where
|
||||||
|
go :: TestOptions -> IO ExitCode
|
||||||
|
go TestOptions{..} = do
|
||||||
|
s'@AppState{ dirs = Dirs{ .. } } <- liftIO getAppState'
|
||||||
|
(case testBindist of
|
||||||
|
Nothing -> runTestGHC s' $ do
|
||||||
|
(v, vi) <- liftE $ fromVersion testVer GHC
|
||||||
|
liftE $ testGHCVer (_tvVersion v) addMakeArgs
|
||||||
|
pure vi
|
||||||
|
Just uri -> do
|
||||||
|
runTestGHC s'{ settings = settings {noVerify = True}} $ do
|
||||||
|
(v, vi) <- liftE $ fromVersion testVer GHC
|
||||||
|
liftE $ testGHCBindist (DownloadInfo uri (Just $ RegexDir ".*/.*") "" Nothing) (_tvVersion v) addMakeArgs
|
||||||
|
pure vi
|
||||||
|
)
|
||||||
|
>>= \case
|
||||||
|
VRight _ -> do
|
||||||
|
runLogger $ logInfo "GHC test successful"
|
||||||
|
pure ExitSuccess
|
||||||
|
VLeft e -> do
|
||||||
|
runLogger $ do
|
||||||
|
logError $ T.pack $ prettyHFError e
|
||||||
|
logError $ "Also check the logs in " <> T.pack (fromGHCupPath logsDir)
|
||||||
|
pure $ ExitFailure 3
|
||||||
|
|
||||||
@@ -23,7 +23,6 @@ import Haskus.Utils.Variant.Excepts
|
|||||||
import Options.Applicative hiding ( style )
|
import Options.Applicative hiding ( style )
|
||||||
import Prelude hiding ( appendFile )
|
import Prelude hiding ( appendFile )
|
||||||
import System.Exit
|
import System.Exit
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow )
|
|
||||||
|
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import qualified Data.Text.IO as T
|
import qualified Data.Text.IO as T
|
||||||
@@ -118,5 +117,5 @@ toolRequirements ToolReqOpts{..} runAppState runLogger = runToolRequirements run
|
|||||||
>>= \case
|
>>= \case
|
||||||
VRight _ -> pure ExitSuccess
|
VRight _ -> pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 12
|
pure $ ExitFailure 12
|
||||||
|
|||||||
@@ -31,7 +31,6 @@ import Options.Applicative hiding ( style )
|
|||||||
import Options.Applicative.Help.Pretty ( text )
|
import Options.Applicative.Help.Pretty ( text )
|
||||||
import Prelude hiding ( appendFile )
|
import Prelude hiding ( appendFile )
|
||||||
import System.Exit
|
import System.Exit
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow )
|
|
||||||
|
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import Control.Exception.Safe (MonadMask)
|
import Control.Exception.Safe (MonadMask)
|
||||||
@@ -189,7 +188,7 @@ unset unsetCommand runLeanAppState runLogger = case unsetCommand of
|
|||||||
runLogger $ logInfo "GHC successfully unset"
|
runLogger $ logInfo "GHC successfully unset"
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 14
|
pure $ ExitFailure 14
|
||||||
(UnsetCabal (UnsetOptions _)) -> do
|
(UnsetCabal (UnsetOptions _)) -> do
|
||||||
void $ runLeanAppState (VRight <$> unsetCabal)
|
void $ runLeanAppState (VRight <$> unsetCabal)
|
||||||
|
|||||||
@@ -28,7 +28,6 @@ import Haskus.Utils.Variant.Excepts
|
|||||||
import Options.Applicative hiding ( style )
|
import Options.Applicative hiding ( style )
|
||||||
import Prelude hiding ( appendFile )
|
import Prelude hiding ( appendFile )
|
||||||
import System.Exit
|
import System.Exit
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow )
|
|
||||||
|
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import Control.Exception.Safe (MonadMask)
|
import Control.Exception.Safe (MonadMask)
|
||||||
@@ -152,5 +151,5 @@ upgrade uOpts force' fatal Dirs{..} runAppState runLogger = do
|
|||||||
runLogger $ logWarn "No GHCup update available"
|
runLogger $ logWarn "No GHCup update available"
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 11
|
pure $ ExitFailure 11
|
||||||
|
|||||||
@@ -34,7 +34,6 @@ import Options.Applicative.Help.Pretty ( text )
|
|||||||
import Prelude hiding ( appendFile )
|
import Prelude hiding ( appendFile )
|
||||||
import System.Environment
|
import System.Environment
|
||||||
import System.Exit
|
import System.Exit
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow )
|
|
||||||
|
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import Control.Exception.Safe (MonadMask)
|
import Control.Exception.Safe (MonadMask)
|
||||||
@@ -288,7 +287,7 @@ whereis whereisCommand whereisOptions runAppState leanAppstate runLogger = do
|
|||||||
liftIO $ putStr r
|
liftIO $ putStr r
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 30
|
pure $ ExitFailure 30
|
||||||
(WhereisTool tool (Just (ToolVersion v)), WhereisOptions{..}) ->
|
(WhereisTool tool (Just (ToolVersion v)), WhereisOptions{..}) ->
|
||||||
runLeanWhereIs leanAppstate (do
|
runLeanWhereIs leanAppstate (do
|
||||||
@@ -302,7 +301,7 @@ whereis whereisCommand whereisOptions runAppState leanAppstate runLogger = do
|
|||||||
liftIO $ putStr r
|
liftIO $ putStr r
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 30
|
pure $ ExitFailure 30
|
||||||
|
|
||||||
(WhereisTool tool whereVer, WhereisOptions{..}) -> do
|
(WhereisTool tool whereVer, WhereisOptions{..}) -> do
|
||||||
@@ -318,7 +317,7 @@ whereis whereisCommand whereisOptions runAppState leanAppstate runLogger = do
|
|||||||
liftIO $ putStr r
|
liftIO $ putStr r
|
||||||
pure ExitSuccess
|
pure ExitSuccess
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger $ logError $ T.pack $ prettyShow e
|
runLogger $ logError $ T.pack $ prettyHFError e
|
||||||
pure $ ExitFailure 30
|
pure $ ExitFailure 30
|
||||||
|
|
||||||
(WhereisBaseDir, _) -> do
|
(WhereisBaseDir, _) -> do
|
||||||
|
|||||||
@@ -206,7 +206,7 @@ Report bugs at <https://github.com/haskell/ghcup-hs/issues>|]
|
|||||||
VRight r -> pure r
|
VRight r -> pure r
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger
|
runLogger
|
||||||
(logError $ T.pack $ prettyShow e)
|
(logError $ T.pack $ prettyHFError e)
|
||||||
exitWith (ExitFailure 2)
|
exitWith (ExitFailure 2)
|
||||||
|
|
||||||
ghcupInfo <-
|
ghcupInfo <-
|
||||||
@@ -218,7 +218,7 @@ Report bugs at <https://github.com/haskell/ghcup-hs/issues>|]
|
|||||||
VRight r -> pure r
|
VRight r -> pure r
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger
|
runLogger
|
||||||
(logError $ T.pack $ prettyShow e)
|
(logError $ T.pack $ prettyHFError e)
|
||||||
exitWith (ExitFailure 2)
|
exitWith (ExitFailure 2)
|
||||||
let s' = AppState settings dirs keybindings ghcupInfo pfreq loggerConfig
|
let s' = AppState settings dirs keybindings ghcupInfo pfreq loggerConfig
|
||||||
|
|
||||||
@@ -266,7 +266,7 @@ Report bugs at <https://github.com/haskell/ghcup-hs/issues>|]
|
|||||||
VRight _ -> pure ()
|
VRight _ -> pure ()
|
||||||
VLeft e -> do
|
VLeft e -> do
|
||||||
runLogger
|
runLogger
|
||||||
(logError $ T.pack $ prettyShow e)
|
(logError $ T.pack $ prettyHFError e)
|
||||||
exitWith (ExitFailure 30)
|
exitWith (ExitFailure 30)
|
||||||
pure s'
|
pure s'
|
||||||
|
|
||||||
@@ -295,6 +295,7 @@ Report bugs at <https://github.com/haskell/ghcup-hs/issues>|]
|
|||||||
#endif
|
#endif
|
||||||
Install installCommand -> install installCommand settings appState runLogger
|
Install installCommand -> install installCommand settings appState runLogger
|
||||||
InstallCabalLegacy iopts -> install (Left (InstallCabal iopts)) settings appState runLogger
|
InstallCabalLegacy iopts -> install (Left (InstallCabal iopts)) settings appState runLogger
|
||||||
|
Test testCommand -> test testCommand settings appState runLogger
|
||||||
Set setCommand -> set setCommand runAppState runLeanAppState runLogger
|
Set setCommand -> set setCommand runAppState runLeanAppState runLogger
|
||||||
UnSet unsetCommand -> unset unsetCommand runLeanAppState runLogger
|
UnSet unsetCommand -> unset unsetCommand runLeanAppState runLogger
|
||||||
List lo -> list lo no_color runAppState
|
List lo -> list lo no_color runAppState
|
||||||
@@ -311,6 +312,7 @@ Report bugs at <https://github.com/haskell/ghcup-hs/issues>|]
|
|||||||
Prefetch pfCom -> prefetch pfCom runAppState runLogger
|
Prefetch pfCom -> prefetch pfCom runAppState runLogger
|
||||||
GC gcOpts -> gc gcOpts runAppState runLogger
|
GC gcOpts -> gc gcOpts runAppState runLogger
|
||||||
Run runCommand -> run runCommand appState leanAppstate runLogger
|
Run runCommand -> run runCommand appState leanAppstate runLogger
|
||||||
|
PrintAppErrors -> putStrLn allHFError >> pure ExitSuccess
|
||||||
|
|
||||||
case res of
|
case res of
|
||||||
ExitSuccess -> pure ()
|
ExitSuccess -> pure ()
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ source-repository-package
|
|||||||
|
|
||||||
constraints: http-io-streams -brotli,
|
constraints: http-io-streams -brotli,
|
||||||
any.Cabal ==3.6.2.0,
|
any.Cabal ==3.6.2.0,
|
||||||
any.aeson >= 2.0.1.0,
|
any.aeson >= 2.0.1.0
|
||||||
|
|
||||||
package libarchive
|
package libarchive
|
||||||
flags: -system-libarchive
|
flags: -system-libarchive
|
||||||
|
|||||||
@@ -60,6 +60,29 @@ All you wanted to know about GHCup.
|
|||||||
3. handling cabal projects
|
3. handling cabal projects
|
||||||
4. being a stack alternative
|
4. being a stack alternative
|
||||||
|
|
||||||
|
## Distribution policies
|
||||||
|
|
||||||
|
Like most Linux distros and other distribution channels, GHCup also
|
||||||
|
follows certain policies. These are as follows:
|
||||||
|
|
||||||
|
1. The end-user experience is our primary concern
|
||||||
|
- ghcup in CI systems as a use case is a first class citizen
|
||||||
|
2. We strive to collaborate with all maintainers of all the tools we support and maintain a good relationship
|
||||||
|
3. We may fix build system or other distribution bugs in upstream bindists
|
||||||
|
- these are always communicated upstream
|
||||||
|
4. We may even patch source code of supported tools in very rare cases if that is required to ensure that the end-user experience does not break
|
||||||
|
- we'll first try to upstream any such required patch and request a new release to avoid downstream patching
|
||||||
|
- patches will be communicated to the maintainers either way and we'll strive to get their review
|
||||||
|
- they will also be communicated to the end-user
|
||||||
|
- they will be uploaded along with the bindist
|
||||||
|
- we will avoid maintaining long-running downstream patches (currently zero)
|
||||||
|
5. We may add bindists for platforms that upstream does not support
|
||||||
|
- this is currently the case for GHC for e.g. Alpine and possibly FreeBSD in the future
|
||||||
|
- this is currently also the case for stack on darwin M1
|
||||||
|
- we don't guarantee for unofficial bindists that the test suite passes at the moment (this may change in the future)
|
||||||
|
6. We GPG sign all the GHCup metadata as well as the unofficial bindists
|
||||||
|
- any trust issues relating to missing checksums or GPG signatures is a bug and given high priority
|
||||||
|
|
||||||
## How
|
## How
|
||||||
|
|
||||||
Installs a specified GHC version into `~/.ghcup/ghc/<ver>`, and places `ghc-<ver>` symlinks in `~/.ghcup/bin/`.
|
Installs a specified GHC version into `~/.ghcup/ghc/<ver>`, and places `ghc-<ver>` symlinks in `~/.ghcup/bin/`.
|
||||||
@@ -75,15 +98,15 @@ cabal-install/HLS/stack are installed in `~/.ghcup/bin/<tool>-<ver>` and have un
|
|||||||
## Known users
|
## Known users
|
||||||
|
|
||||||
* CI:
|
* CI:
|
||||||
- [Github actions/virtual-environments](https://github.com/actions/virtual-environments)
|
- [Github actions/virtual-environments](https://github.com/actions/virtual-environments)
|
||||||
- [Github haskell/actions/setup](https://github.com/haskell/actions/tree/main/setup)
|
- [Github haskell/actions/setup](https://github.com/haskell/actions/tree/main/setup)
|
||||||
- [haskell-ci](https://github.com/haskell-CI/haskell-ci)
|
- [haskell-ci](https://github.com/haskell-CI/haskell-ci)
|
||||||
* mirrors:
|
* mirrors:
|
||||||
- [sjtug](https://mirror.sjtu.edu.cn/docs/ghcup)
|
- [sjtug](https://mirror.sjtu.edu.cn/docs/ghcup)
|
||||||
* tools:
|
* tools:
|
||||||
- [vscode-haskell](https://github.com/haskell/vscode-haskell)
|
- [vscode-haskell](https://github.com/haskell/vscode-haskell)
|
||||||
- [nvim-lsp-installer](https://github.com/williamboman/nvim-lsp-installer)
|
- [nvim-lsp-installer](https://github.com/williamboman/nvim-lsp-installer)
|
||||||
- [vabal](https://github.com/Franciman/vabal)
|
- [vabal](https://github.com/Franciman/vabal)
|
||||||
|
|
||||||
## Known problems
|
## Known problems
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
cabal-version: 3.0
|
cabal-version: 2.4
|
||||||
name: ghcup
|
name: ghcup
|
||||||
version: 0.1.18.1
|
version: 0.1.18.1
|
||||||
license: LGPL-3.0-only
|
license: LGPL-3.0-only
|
||||||
@@ -219,6 +219,7 @@ executable ghcup
|
|||||||
GHCup.OptParse.Rm
|
GHCup.OptParse.Rm
|
||||||
GHCup.OptParse.Run
|
GHCup.OptParse.Run
|
||||||
GHCup.OptParse.Set
|
GHCup.OptParse.Set
|
||||||
|
GHCup.OptParse.Test
|
||||||
GHCup.OptParse.ToolRequirements
|
GHCup.OptParse.ToolRequirements
|
||||||
GHCup.OptParse.UnSet
|
GHCup.OptParse.UnSet
|
||||||
GHCup.OptParse.Upgrade
|
GHCup.OptParse.Upgrade
|
||||||
|
|||||||
@@ -78,7 +78,6 @@ import Text.Regex.Posix
|
|||||||
|
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import qualified Streamly.Prelude as S
|
import qualified Streamly.Prelude as S
|
||||||
import Text.PrettyPrint.HughesPJClass (prettyShow)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -328,7 +327,7 @@ upgradeGHCup mtarget force' fatal = do
|
|||||||
Just pa
|
Just pa
|
||||||
| fatal -> throwE (ToolShadowed GHCup pa destFile latestVer)
|
| fatal -> throwE (ToolShadowed GHCup pa destFile latestVer)
|
||||||
| otherwise ->
|
| otherwise ->
|
||||||
lift $ logWarn $ T.pack $ prettyShow (ToolShadowed GHCup pa destFile latestVer)
|
lift $ logWarn $ T.pack $ prettyHFError (ToolShadowed GHCup pa destFile latestVer)
|
||||||
|
|
||||||
pure latestVer
|
pure latestVer
|
||||||
|
|
||||||
|
|||||||
@@ -50,7 +50,6 @@ import System.FilePath
|
|||||||
import System.IO.Error
|
import System.IO.Error
|
||||||
|
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import Text.PrettyPrint.HughesPJClass (prettyShow)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -235,7 +234,7 @@ setCabal ver = do
|
|||||||
|
|
||||||
liftIO (isShadowed cabalbin) >>= \case
|
liftIO (isShadowed cabalbin) >>= \case
|
||||||
Nothing -> pure ()
|
Nothing -> pure ()
|
||||||
Just pa -> lift $ logWarn $ T.pack $ prettyShow (ToolShadowed Cabal pa cabalbin ver)
|
Just pa -> lift $ logWarn $ T.pack $ prettyHFError (ToolShadowed Cabal pa cabalbin ver)
|
||||||
|
|
||||||
pure ()
|
pure ()
|
||||||
|
|
||||||
|
|||||||
@@ -75,7 +75,6 @@ import System.Exit
|
|||||||
import System.FilePath
|
import System.FilePath
|
||||||
import System.IO.Error
|
import System.IO.Error
|
||||||
import System.IO.Temp
|
import System.IO.Temp
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow )
|
|
||||||
import URI.ByteString
|
import URI.ByteString
|
||||||
|
|
||||||
import qualified Crypto.Hash.SHA256 as SHA256
|
import qualified Crypto.Hash.SHA256 as SHA256
|
||||||
@@ -176,7 +175,7 @@ getBase uri = do
|
|||||||
Lax -> lift (warnCache (displayException e) downloader) >> pure Nothing)
|
Lax -> lift (warnCache (displayException e) downloader) >> pure Nothing)
|
||||||
. catchE @_ @_ @'[DownloadFailed] (\e@(DownloadFailed _) -> case metaMode of
|
. catchE @_ @_ @'[DownloadFailed] (\e@(DownloadFailed _) -> case metaMode of
|
||||||
Strict -> throwE e
|
Strict -> throwE e
|
||||||
Lax -> lift (warnCache (prettyShow e) downloader) >> pure Nothing)
|
Lax -> lift (warnCache (prettyHFError e) downloader) >> pure Nothing)
|
||||||
. fmap Just
|
. fmap Just
|
||||||
. smartDl
|
. smartDl
|
||||||
$ uri
|
$ uri
|
||||||
@@ -392,7 +391,7 @@ download uri gpgUri eDigest eCSize dest mfn etags
|
|||||||
liftE $ flip onException
|
liftE $ flip onException
|
||||||
(lift $ hideError doesNotExistErrorType $ recycleFile (tmpFile gpgDestFile))
|
(lift $ hideError doesNotExistErrorType $ recycleFile (tmpFile gpgDestFile))
|
||||||
$ catchAllE @_ @'[GPGError, ProcessError, UnsupportedScheme, DownloadFailed] @'[GPGError]
|
$ catchAllE @_ @'[GPGError, ProcessError, UnsupportedScheme, DownloadFailed] @'[GPGError]
|
||||||
(\e -> if gpgSetting == GPGStrict then throwE (GPGError e) else lift $ logWarn $ T.pack (prettyShow (GPGError e))
|
(\e -> if gpgSetting == GPGStrict then throwE (GPGError e) else lift $ logWarn $ T.pack (prettyHFError (GPGError e))
|
||||||
) $ do
|
) $ do
|
||||||
o' <- liftIO getGpgOpts
|
o' <- liftIO getGpgOpts
|
||||||
lift $ logDebug $ "downloading: " <> (decUTF8Safe . serializeURIRef') gpgUri' <> " as file " <> T.pack gpgDestFile
|
lift $ logDebug $ "downloading: " <> (decUTF8Safe . serializeURIRef') gpgUri' <> " as file " <> T.pack gpgDestFile
|
||||||
@@ -486,7 +485,10 @@ download uri gpgUri eDigest eCSize dest mfn etags
|
|||||||
, MonadMask m
|
, MonadMask m
|
||||||
, MonadIO m
|
, MonadIO m
|
||||||
)
|
)
|
||||||
=> [String] -> FilePath -> URI -> Excepts '[ProcessError, DownloadFailed, UnsupportedScheme] m ()
|
=> [String]
|
||||||
|
-> FilePath
|
||||||
|
-> URI
|
||||||
|
-> Excepts '[ProcessError, DownloadFailed, UnsupportedScheme] m ()
|
||||||
wgetEtagsDL o' destFile (decUTF8Safe . serializeURIRef' -> uri') = do
|
wgetEtagsDL o' destFile (decUTF8Safe . serializeURIRef' -> uri') = do
|
||||||
let destFileTemp = tmpFile destFile
|
let destFileTemp = tmpFile destFile
|
||||||
flip finally (try @_ @SomeException $ rmFile destFileTemp) $ do
|
flip finally (try @_ @SomeException $ rmFile destFileTemp) $ do
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
{-# LANGUAGE StandaloneDeriving #-}
|
{-# LANGUAGE StandaloneDeriving #-}
|
||||||
{-# LANGUAGE TypeOperators #-}
|
{-# LANGUAGE TypeOperators #-}
|
||||||
{-# LANGUAGE FlexibleInstances #-}
|
{-# LANGUAGE FlexibleInstances #-}
|
||||||
|
{-# LANGUAGE RankNTypes #-}
|
||||||
|
|
||||||
{-|
|
{-|
|
||||||
Module : GHCup.Errors
|
Module : GHCup.Errors
|
||||||
@@ -34,9 +35,153 @@ import URI.ByteString
|
|||||||
|
|
||||||
import qualified Data.Map.Strict as M
|
import qualified Data.Map.Strict as M
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
|
import Data.Data (Proxy(..))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
allHFError :: String
|
||||||
|
allHFError = unlines allErrors
|
||||||
|
where
|
||||||
|
format p = "GHCup-" <> show (eBase p) <> " " <> eDesc p
|
||||||
|
format'' e p = "GHCup-" <> show (eNum e) <> " " <> eDesc p
|
||||||
|
format' e _ = "GHCup-" <> show (eNum e) <> " " <> prettyShow e
|
||||||
|
format''' e _ str' = "GHCup-" <> show (eNum e) <> " " <> str'
|
||||||
|
allErrors =
|
||||||
|
[ "# low level errors (1 to 500)"
|
||||||
|
, let proxy = Proxy :: Proxy NoCompatiblePlatform in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy NoDownload in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy NoUpdate in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy DistroNotFound in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy UnknownArchive in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy UnsupportedScheme in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy CopyError in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy MergeFileTreeError in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy TagNotFound in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy NextVerNotFound in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy AlreadyInstalled in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy DirNotEmpty in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy NotInstalled in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy UninstallFailed in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy NotFoundInPATH in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy JSONError in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy FileDoesNotExistError in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy FileAlreadyExistsError in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy TarDirDoesNotExist in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy DigestError in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy GPGError in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy HTTPStatusError in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy MalformedHeaders in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy HTTPNotModified in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy NoLocationHeader in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy TooManyRedirs in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy PatchFailed in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy NoToolRequirements in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy InvalidBuildConfig in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy NoToolVersionSet in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy NoNetwork in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy HadrianNotFound in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy ToolShadowed in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy ContentLengthError in format proxy
|
||||||
|
, ""
|
||||||
|
, "# high level errors (4000+)"
|
||||||
|
, let proxy = Proxy :: Proxy DownloadFailed in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy InstallSetError in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy TestFailed in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy BuildFailed in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy GHCupSetError in format proxy
|
||||||
|
, ""
|
||||||
|
, "# true exceptions (500+)"
|
||||||
|
, let proxy = Proxy :: Proxy ParseError in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy UnexpectedListLength in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy NoUrlBase in format proxy
|
||||||
|
, ""
|
||||||
|
, "# orphans (800+)"
|
||||||
|
, let proxy = Proxy :: Proxy URIParseError in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy URIParseError
|
||||||
|
e = MalformedScheme MissingColon
|
||||||
|
in format' e proxy
|
||||||
|
, let proxy = Proxy :: Proxy URIParseError
|
||||||
|
e = MalformedUserInfo
|
||||||
|
in format' e proxy
|
||||||
|
, let proxy = Proxy :: Proxy URIParseError
|
||||||
|
e = MalformedQuery
|
||||||
|
in format' e proxy
|
||||||
|
, let proxy = Proxy :: Proxy URIParseError
|
||||||
|
e = MalformedFragment
|
||||||
|
in format' e proxy
|
||||||
|
, let proxy = Proxy :: Proxy URIParseError
|
||||||
|
e = MalformedHost
|
||||||
|
in format' e proxy
|
||||||
|
, let proxy = Proxy :: Proxy URIParseError
|
||||||
|
e = MalformedPort
|
||||||
|
in format' e proxy
|
||||||
|
, let proxy = Proxy :: Proxy URIParseError
|
||||||
|
e = MalformedPath
|
||||||
|
in format' e proxy
|
||||||
|
, let proxy = Proxy :: Proxy URIParseError
|
||||||
|
e = OtherError ""
|
||||||
|
in format'' e proxy
|
||||||
|
, let proxy = Proxy :: Proxy ArchiveResult in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy ArchiveResult
|
||||||
|
e = ArchiveFatal
|
||||||
|
in format' e proxy
|
||||||
|
, let proxy = Proxy :: Proxy ArchiveResult
|
||||||
|
e = ArchiveFailed
|
||||||
|
in format' e proxy
|
||||||
|
, let proxy = Proxy :: Proxy ArchiveResult
|
||||||
|
e = ArchiveWarn
|
||||||
|
in format' e proxy
|
||||||
|
, let proxy = Proxy :: Proxy ArchiveResult
|
||||||
|
e = ArchiveRetry
|
||||||
|
in format' e proxy
|
||||||
|
, let proxy = Proxy :: Proxy ArchiveResult
|
||||||
|
e = ArchiveOk
|
||||||
|
in format' e proxy
|
||||||
|
, let proxy = Proxy :: Proxy ArchiveResult
|
||||||
|
e = ArchiveEOF
|
||||||
|
in format' e proxy
|
||||||
|
|
||||||
|
, let proxy = Proxy :: Proxy ProcessError in format proxy
|
||||||
|
, let proxy = Proxy :: Proxy ProcessError
|
||||||
|
e = NonZeroExit 0 "" []
|
||||||
|
in format''' e proxy "A process returned a non-zero exit code."
|
||||||
|
, let proxy = Proxy :: Proxy ProcessError
|
||||||
|
e = PTerminated "" []
|
||||||
|
in format''' e proxy "A process terminated prematurely."
|
||||||
|
, let proxy = Proxy :: Proxy ProcessError
|
||||||
|
e = PStopped "" []
|
||||||
|
in format''' e proxy "A process stopped prematurely."
|
||||||
|
, let proxy = Proxy :: Proxy ProcessError
|
||||||
|
e = NoSuchPid "" []
|
||||||
|
in format''' e proxy "Could not find PID for this process."
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
prettyHFError :: (Pretty e, HFErrorProject e) => e -> String
|
||||||
|
prettyHFError e =
|
||||||
|
let errorCode = "GHCup-" <> padIntAndShow (eNum e)
|
||||||
|
in ("[" <> linkEscapeCode errorCode (hfErrorLink errorCode) <> "] ") <> prettyShow e
|
||||||
|
where
|
||||||
|
hfErrorLink errorCode = "https://errors.haskell.org/messages/" <> errorCode
|
||||||
|
padIntAndShow i
|
||||||
|
| i < 10 = "0000" <> show i
|
||||||
|
| i < 100 = "000" <> show i
|
||||||
|
| i < 1000 = "00" <> show i
|
||||||
|
| i < 10000 = "0" <> show i
|
||||||
|
| otherwise = show i
|
||||||
|
|
||||||
|
class HFErrorProject a where
|
||||||
|
eNum :: a -> Int
|
||||||
|
eNum _ = eBase (Proxy :: Proxy a)
|
||||||
|
|
||||||
|
eBase :: Proxy a -> Int
|
||||||
|
|
||||||
|
eDesc :: Proxy a -> String
|
||||||
|
|
||||||
|
linkEscapeCode :: String -> String -> String
|
||||||
|
linkEscapeCode linkText link = "\ESC]8;;" <> link <> "\ESC\\" <> linkText <> "\ESC]8;;\ESC\\"
|
||||||
|
|
||||||
|
|
||||||
------------------------
|
------------------------
|
||||||
--[ Low-level errors ]--
|
--[ Low-level errors ]--
|
||||||
------------------------
|
------------------------
|
||||||
@@ -51,20 +196,32 @@ instance Pretty NoCompatiblePlatform where
|
|||||||
pPrint (NoCompatiblePlatform str') =
|
pPrint (NoCompatiblePlatform str') =
|
||||||
text ("Could not find a compatible platform. Got: " ++ str')
|
text ("Could not find a compatible platform. Got: " ++ str')
|
||||||
|
|
||||||
|
instance HFErrorProject NoCompatiblePlatform where
|
||||||
|
eBase _ = 1
|
||||||
|
eDesc _ = "No compatible platform could be found"
|
||||||
|
|
||||||
-- | Unable to find a download for the requested version/distro.
|
-- | Unable to find a download for the requested version/distro.
|
||||||
data NoDownload = NoDownload
|
data NoDownload = NoDownload
|
||||||
deriving Show
|
deriving Show
|
||||||
|
|
||||||
instance Pretty NoDownload where
|
instance Pretty NoDownload where
|
||||||
pPrint NoDownload =
|
pPrint NoDownload =
|
||||||
text "Unable to find a download for the requested version/distro."
|
text (eDesc (Proxy :: Proxy NoDownload))
|
||||||
|
|
||||||
|
instance HFErrorProject NoDownload where
|
||||||
|
eBase _ = 10
|
||||||
|
eDesc _ = "Unable to find a download for the requested version/distro."
|
||||||
|
|
||||||
-- | No update available or necessary.
|
-- | No update available or necessary.
|
||||||
data NoUpdate = NoUpdate
|
data NoUpdate = NoUpdate
|
||||||
deriving Show
|
deriving Show
|
||||||
|
|
||||||
instance Pretty NoUpdate where
|
instance Pretty NoUpdate where
|
||||||
pPrint NoUpdate = text "No update available or necessary."
|
pPrint NoUpdate = text (eDesc (Proxy :: Proxy NoUpdate))
|
||||||
|
|
||||||
|
instance HFErrorProject NoUpdate where
|
||||||
|
eBase _ = 20
|
||||||
|
eDesc _ = "No update available or necessary."
|
||||||
|
|
||||||
-- | The Architecture is unknown and unsupported.
|
-- | The Architecture is unknown and unsupported.
|
||||||
data NoCompatibleArch = NoCompatibleArch String
|
data NoCompatibleArch = NoCompatibleArch String
|
||||||
@@ -74,13 +231,21 @@ instance Pretty NoCompatibleArch where
|
|||||||
pPrint (NoCompatibleArch arch) =
|
pPrint (NoCompatibleArch arch) =
|
||||||
text ("The Architecture is unknown or unsupported. Got: " ++ arch)
|
text ("The Architecture is unknown or unsupported. Got: " ++ arch)
|
||||||
|
|
||||||
|
instance HFErrorProject NoCompatibleArch where
|
||||||
|
eBase _ = 30
|
||||||
|
eDesc _ = "The Architecture is unknown and unsupported"
|
||||||
|
|
||||||
-- | Unable to figure out the distribution of the host.
|
-- | Unable to figure out the distribution of the host.
|
||||||
data DistroNotFound = DistroNotFound
|
data DistroNotFound = DistroNotFound
|
||||||
deriving Show
|
deriving Show
|
||||||
|
|
||||||
instance Pretty DistroNotFound where
|
instance Pretty DistroNotFound where
|
||||||
pPrint DistroNotFound =
|
pPrint DistroNotFound =
|
||||||
text "Unable to figure out the distribution of the host."
|
text (eDesc (Proxy :: Proxy DistroNotFound))
|
||||||
|
|
||||||
|
instance HFErrorProject DistroNotFound where
|
||||||
|
eBase _ = 40
|
||||||
|
eDesc _ = "Unable to figure out the distribution of the host"
|
||||||
|
|
||||||
-- | The archive format is unknown. We don't know how to extract it.
|
-- | The archive format is unknown. We don't know how to extract it.
|
||||||
data UnknownArchive = UnknownArchive FilePath
|
data UnknownArchive = UnknownArchive FilePath
|
||||||
@@ -90,12 +255,21 @@ instance Pretty UnknownArchive where
|
|||||||
pPrint (UnknownArchive file) =
|
pPrint (UnknownArchive file) =
|
||||||
text $ "The archive format is unknown. We don't know how to extract the file " <> file
|
text $ "The archive format is unknown. We don't know how to extract the file " <> file
|
||||||
|
|
||||||
|
instance HFErrorProject UnknownArchive where
|
||||||
|
eBase _ = 50
|
||||||
|
eDesc _ = "The archive format is unknown. We don't know how to extract it."
|
||||||
|
|
||||||
-- | The scheme is not supported (such as ftp).
|
-- | The scheme is not supported (such as ftp).
|
||||||
data UnsupportedScheme = UnsupportedScheme
|
data UnsupportedScheme = UnsupportedScheme
|
||||||
deriving Show
|
deriving Show
|
||||||
|
|
||||||
instance Pretty UnsupportedScheme where
|
instance Pretty UnsupportedScheme where
|
||||||
pPrint UnsupportedScheme = text "The scheme is not supported (such as ftp)."
|
pPrint UnsupportedScheme =
|
||||||
|
text (eDesc (Proxy :: Proxy UnsupportedScheme))
|
||||||
|
|
||||||
|
instance HFErrorProject UnsupportedScheme where
|
||||||
|
eBase _ = 60
|
||||||
|
eDesc _ = "The scheme is not supported (such as ftp)."
|
||||||
|
|
||||||
-- | Unable to copy a file.
|
-- | Unable to copy a file.
|
||||||
data CopyError = CopyError String
|
data CopyError = CopyError String
|
||||||
@@ -105,6 +279,10 @@ instance Pretty CopyError where
|
|||||||
pPrint (CopyError reason) =
|
pPrint (CopyError reason) =
|
||||||
text ("Unable to copy a file. Reason was: " ++ reason)
|
text ("Unable to copy a file. Reason was: " ++ reason)
|
||||||
|
|
||||||
|
instance HFErrorProject CopyError where
|
||||||
|
eBase _ = 70
|
||||||
|
eDesc _ = "Unable to copy a file."
|
||||||
|
|
||||||
-- | Unable to merge file trees.
|
-- | Unable to merge file trees.
|
||||||
data MergeFileTreeError = MergeFileTreeError IOException FilePath FilePath
|
data MergeFileTreeError = MergeFileTreeError IOException FilePath FilePath
|
||||||
deriving Show
|
deriving Show
|
||||||
@@ -114,6 +292,10 @@ instance Pretty MergeFileTreeError where
|
|||||||
text "Failed to merge file tree from" <+> text from <+> text "to" <+> text to <+> text "\nexception was:" <+> text (displayException e)
|
text "Failed to merge file tree from" <+> text from <+> text "to" <+> text to <+> text "\nexception was:" <+> text (displayException e)
|
||||||
<+> text "\n...you may need to delete" <+> text to <+> text "manually. Make sure it's gone."
|
<+> text "\n...you may need to delete" <+> text to <+> text "manually. Make sure it's gone."
|
||||||
|
|
||||||
|
instance HFErrorProject MergeFileTreeError where
|
||||||
|
eBase _ = 80
|
||||||
|
eDesc _ = "Unable to merge file trees during installation"
|
||||||
|
|
||||||
-- | Unable to find a tag of a tool.
|
-- | Unable to find a tag of a tool.
|
||||||
data TagNotFound = TagNotFound Tag Tool
|
data TagNotFound = TagNotFound Tag Tool
|
||||||
deriving Show
|
deriving Show
|
||||||
@@ -122,6 +304,10 @@ instance Pretty TagNotFound where
|
|||||||
pPrint (TagNotFound tag tool) =
|
pPrint (TagNotFound tag tool) =
|
||||||
text "Unable to find tag" <+> pPrint tag <+> text "of tool" <+> pPrint tool
|
text "Unable to find tag" <+> pPrint tag <+> text "of tool" <+> pPrint tool
|
||||||
|
|
||||||
|
instance HFErrorProject TagNotFound where
|
||||||
|
eBase _ = 90
|
||||||
|
eDesc _ = "Unable to find a tag of a tool"
|
||||||
|
|
||||||
-- | Unable to find the next version of a tool (the one after the currently
|
-- | Unable to find the next version of a tool (the one after the currently
|
||||||
-- set one).
|
-- set one).
|
||||||
data NextVerNotFound = NextVerNotFound Tool
|
data NextVerNotFound = NextVerNotFound Tool
|
||||||
@@ -131,6 +317,10 @@ instance Pretty NextVerNotFound where
|
|||||||
pPrint (NextVerNotFound tool) =
|
pPrint (NextVerNotFound tool) =
|
||||||
text "Unable to find next (the one after the currently set one) version of tool" <+> pPrint tool
|
text "Unable to find next (the one after the currently set one) version of tool" <+> pPrint tool
|
||||||
|
|
||||||
|
instance HFErrorProject NextVerNotFound where
|
||||||
|
eBase _ = 100
|
||||||
|
eDesc _ = "Unable to find the next version of a tool (the one after the currently set one)"
|
||||||
|
|
||||||
-- | The tool (such as GHC) is already installed with that version.
|
-- | The tool (such as GHC) is already installed with that version.
|
||||||
data AlreadyInstalled = AlreadyInstalled Tool Version
|
data AlreadyInstalled = AlreadyInstalled Tool Version
|
||||||
deriving Show
|
deriving Show
|
||||||
@@ -140,6 +330,9 @@ instance Pretty AlreadyInstalled where
|
|||||||
(pPrint tool <> text "-" <> pPrint ver') <+> text "is already installed;"
|
(pPrint tool <> text "-" <> pPrint ver') <+> text "is already installed;"
|
||||||
<+> text "if you really want to reinstall it, you may want to run 'ghcup install" <+> pPrint tool <+> text "--force" <+> (pPrint ver' <> text "'")
|
<+> text "if you really want to reinstall it, you may want to run 'ghcup install" <+> pPrint tool <+> text "--force" <+> (pPrint ver' <> text "'")
|
||||||
|
|
||||||
|
instance HFErrorProject AlreadyInstalled where
|
||||||
|
eBase _ = 110
|
||||||
|
eDesc _ = "The tool (such as GHC) is already installed with that version"
|
||||||
|
|
||||||
-- | The Directory is supposed to be empty, but wasn't.
|
-- | The Directory is supposed to be empty, but wasn't.
|
||||||
data DirNotEmpty = DirNotEmpty {path :: FilePath}
|
data DirNotEmpty = DirNotEmpty {path :: FilePath}
|
||||||
@@ -149,6 +342,10 @@ instance Pretty DirNotEmpty where
|
|||||||
pPrint (DirNotEmpty path) = do
|
pPrint (DirNotEmpty path) = do
|
||||||
text $ "The directory was expected to be empty, but isn't: " <> path
|
text $ "The directory was expected to be empty, but isn't: " <> path
|
||||||
|
|
||||||
|
instance HFErrorProject DirNotEmpty where
|
||||||
|
eBase _ = 120
|
||||||
|
eDesc _ = "The Directory is supposed to be empty, but wasn't"
|
||||||
|
|
||||||
-- | The tool is not installed. Some operations rely on a tool
|
-- | The tool is not installed. Some operations rely on a tool
|
||||||
-- to be installed (such as setting the current GHC version).
|
-- to be installed (such as setting the current GHC version).
|
||||||
data NotInstalled = NotInstalled Tool GHCTargetVersion
|
data NotInstalled = NotInstalled Tool GHCTargetVersion
|
||||||
@@ -158,6 +355,10 @@ instance Pretty NotInstalled where
|
|||||||
pPrint (NotInstalled tool ver) =
|
pPrint (NotInstalled tool ver) =
|
||||||
text "The version" <+> pPrint ver <+> text "of the tool" <+> pPrint tool <+> text "is not installed."
|
text "The version" <+> pPrint ver <+> text "of the tool" <+> pPrint tool <+> text "is not installed."
|
||||||
|
|
||||||
|
instance HFErrorProject NotInstalled where
|
||||||
|
eBase _ = 130
|
||||||
|
eDesc _ = "The required tool is not installed"
|
||||||
|
|
||||||
data UninstallFailed = UninstallFailed FilePath [FilePath]
|
data UninstallFailed = UninstallFailed FilePath [FilePath]
|
||||||
deriving Show
|
deriving Show
|
||||||
|
|
||||||
@@ -165,6 +366,10 @@ instance Pretty UninstallFailed where
|
|||||||
pPrint (UninstallFailed dir files) =
|
pPrint (UninstallFailed dir files) =
|
||||||
text "The following files survived uninstallation: " <+> pPrint files <+> text "...consider removing" <+> pPrint dir <+> text "manually."
|
text "The following files survived uninstallation: " <+> pPrint files <+> text "...consider removing" <+> pPrint dir <+> text "manually."
|
||||||
|
|
||||||
|
instance HFErrorProject UninstallFailed where
|
||||||
|
eBase _ = 140
|
||||||
|
eDesc _ = "Uninstallation failed with leftover files"
|
||||||
|
|
||||||
-- | An executable was expected to be in PATH, but was not found.
|
-- | An executable was expected to be in PATH, but was not found.
|
||||||
data NotFoundInPATH = NotFoundInPATH FilePath
|
data NotFoundInPATH = NotFoundInPATH FilePath
|
||||||
deriving Show
|
deriving Show
|
||||||
@@ -175,6 +380,10 @@ instance Pretty NotFoundInPATH where
|
|||||||
pPrint (NotFoundInPATH exe) =
|
pPrint (NotFoundInPATH exe) =
|
||||||
text $ "The exe " <> exe <> " was not found in PATH."
|
text $ "The exe " <> exe <> " was not found in PATH."
|
||||||
|
|
||||||
|
instance HFErrorProject NotFoundInPATH where
|
||||||
|
eBase _ = 150
|
||||||
|
eDesc _ = "An executable was expected to be in PATH, but was not found"
|
||||||
|
|
||||||
-- | JSON decoding failed.
|
-- | JSON decoding failed.
|
||||||
data JSONError = JSONDecodeError String
|
data JSONError = JSONDecodeError String
|
||||||
deriving Show
|
deriving Show
|
||||||
@@ -183,6 +392,10 @@ instance Pretty JSONError where
|
|||||||
pPrint (JSONDecodeError err) =
|
pPrint (JSONDecodeError err) =
|
||||||
text $ "JSON decoding failed with: " <> err
|
text $ "JSON decoding failed with: " <> err
|
||||||
|
|
||||||
|
instance HFErrorProject JSONError where
|
||||||
|
eBase _ = 160
|
||||||
|
eDesc _ = "JSON decoding failed"
|
||||||
|
|
||||||
-- | A file that is supposed to exist does not exist
|
-- | A file that is supposed to exist does not exist
|
||||||
-- (e.g. when we use file scheme to "download" something).
|
-- (e.g. when we use file scheme to "download" something).
|
||||||
data FileDoesNotExistError = FileDoesNotExistError FilePath
|
data FileDoesNotExistError = FileDoesNotExistError FilePath
|
||||||
@@ -192,6 +405,10 @@ instance Pretty FileDoesNotExistError where
|
|||||||
pPrint (FileDoesNotExistError file) =
|
pPrint (FileDoesNotExistError file) =
|
||||||
text $ "File " <> file <> " does not exist."
|
text $ "File " <> file <> " does not exist."
|
||||||
|
|
||||||
|
instance HFErrorProject FileDoesNotExistError where
|
||||||
|
eBase _ = 170
|
||||||
|
eDesc _ = "A file that is supposed to exist does not exist (oops)"
|
||||||
|
|
||||||
-- | The file already exists
|
-- | The file already exists
|
||||||
-- (e.g. when we use isolated installs with the same path).
|
-- (e.g. when we use isolated installs with the same path).
|
||||||
-- (e.g. This is done to prevent any overwriting)
|
-- (e.g. This is done to prevent any overwriting)
|
||||||
@@ -202,6 +419,10 @@ instance Pretty FileAlreadyExistsError where
|
|||||||
pPrint (FileAlreadyExistsError file) =
|
pPrint (FileAlreadyExistsError file) =
|
||||||
text $ "File " <> file <> " Already exists."
|
text $ "File " <> file <> " Already exists."
|
||||||
|
|
||||||
|
instance HFErrorProject FileAlreadyExistsError where
|
||||||
|
eBase _ = 180
|
||||||
|
eDesc _ = "A file already exists that wasn't expected to exist"
|
||||||
|
|
||||||
data TarDirDoesNotExist = TarDirDoesNotExist TarDir
|
data TarDirDoesNotExist = TarDirDoesNotExist TarDir
|
||||||
deriving Show
|
deriving Show
|
||||||
|
|
||||||
@@ -209,6 +430,10 @@ instance Pretty TarDirDoesNotExist where
|
|||||||
pPrint (TarDirDoesNotExist dir) =
|
pPrint (TarDirDoesNotExist dir) =
|
||||||
text "Tar directory does not exist:" <+> pPrint dir
|
text "Tar directory does not exist:" <+> pPrint dir
|
||||||
|
|
||||||
|
instance HFErrorProject TarDirDoesNotExist where
|
||||||
|
eBase _ = 190
|
||||||
|
eDesc _ = "The tar directory (e.g. inside an archive) does not exist"
|
||||||
|
|
||||||
-- | File digest verification failed.
|
-- | File digest verification failed.
|
||||||
data DigestError = DigestError FilePath Text Text
|
data DigestError = DigestError FilePath Text Text
|
||||||
deriving Show
|
deriving Show
|
||||||
@@ -219,6 +444,175 @@ instance Pretty DigestError where
|
|||||||
<+> text (T.unpack expectedDigest) <+> text "but got" <+> pPrint currentDigest <+> text
|
<+> text (T.unpack expectedDigest) <+> text "but got" <+> pPrint currentDigest <+> text
|
||||||
"\nConsider removing the file in case it's cached and try again."
|
"\nConsider removing the file in case it's cached and try again."
|
||||||
|
|
||||||
|
instance HFErrorProject DigestError where
|
||||||
|
eBase _ = 200
|
||||||
|
eDesc _ = "File digest verification failed"
|
||||||
|
|
||||||
|
-- | File PGP verification failed.
|
||||||
|
data GPGError = forall xs . (ToVariantMaybe DownloadFailed xs, PopVariant DownloadFailed xs, Show (V xs), Pretty (V xs)) => GPGError (V xs)
|
||||||
|
|
||||||
|
deriving instance Show GPGError
|
||||||
|
|
||||||
|
instance Pretty GPGError where
|
||||||
|
pPrint (GPGError reason) = text "GPG verify failed:" <+> pPrint reason
|
||||||
|
|
||||||
|
instance HFErrorProject GPGError where
|
||||||
|
eBase _ = 210
|
||||||
|
eDesc _ = "File PGP verification failed"
|
||||||
|
|
||||||
|
-- | Unexpected HTTP status.
|
||||||
|
data HTTPStatusError = HTTPStatusError Int (M.Map (CI ByteString) ByteString)
|
||||||
|
deriving Show
|
||||||
|
|
||||||
|
instance Pretty HTTPStatusError where
|
||||||
|
pPrint (HTTPStatusError status _) =
|
||||||
|
text "Unexpected HTTP status:" <+> pPrint status
|
||||||
|
|
||||||
|
instance HFErrorProject HTTPStatusError where
|
||||||
|
eBase _ = 220
|
||||||
|
eDesc _ = "Unexpected HTTP status error (e.g. during downloads)"
|
||||||
|
|
||||||
|
-- | Malformed headers.
|
||||||
|
data MalformedHeaders = MalformedHeaders Text
|
||||||
|
deriving Show
|
||||||
|
|
||||||
|
instance Pretty MalformedHeaders where
|
||||||
|
pPrint (MalformedHeaders h) =
|
||||||
|
text "Headers are malformed: " <+> pPrint h
|
||||||
|
|
||||||
|
instance HFErrorProject MalformedHeaders where
|
||||||
|
eBase _ = 230
|
||||||
|
eDesc _ = "Malformed headers during download"
|
||||||
|
|
||||||
|
-- | Unexpected HTTP status.
|
||||||
|
data HTTPNotModified = HTTPNotModified Text
|
||||||
|
deriving Show
|
||||||
|
|
||||||
|
instance Pretty HTTPNotModified where
|
||||||
|
pPrint (HTTPNotModified etag) =
|
||||||
|
text "Remote resource not modifed, etag was:" <+> pPrint etag
|
||||||
|
|
||||||
|
instance HFErrorProject HTTPNotModified where
|
||||||
|
eBase _ = 240
|
||||||
|
eDesc _ = "Not modified HTTP status error (e.g. during downloads)."
|
||||||
|
|
||||||
|
-- | The 'Location' header was expected during a 3xx redirect, but not found.
|
||||||
|
data NoLocationHeader = NoLocationHeader
|
||||||
|
deriving Show
|
||||||
|
|
||||||
|
instance Pretty NoLocationHeader where
|
||||||
|
pPrint NoLocationHeader =
|
||||||
|
text (eDesc (Proxy :: Proxy NoLocationHeader))
|
||||||
|
|
||||||
|
instance HFErrorProject NoLocationHeader where
|
||||||
|
eBase _ = 250
|
||||||
|
eDesc _ = "The 'Location' header was expected during a 3xx redirect, but not found."
|
||||||
|
|
||||||
|
-- | Too many redirects.
|
||||||
|
data TooManyRedirs = TooManyRedirs
|
||||||
|
deriving Show
|
||||||
|
|
||||||
|
instance Pretty TooManyRedirs where
|
||||||
|
pPrint TooManyRedirs =
|
||||||
|
text (eDesc (Proxy :: Proxy TooManyRedirs))
|
||||||
|
|
||||||
|
instance HFErrorProject TooManyRedirs where
|
||||||
|
eBase _ = 260
|
||||||
|
eDesc _ = "Too many redirections."
|
||||||
|
|
||||||
|
-- | A patch could not be applied.
|
||||||
|
data PatchFailed = PatchFailed
|
||||||
|
deriving Show
|
||||||
|
|
||||||
|
instance Pretty PatchFailed where
|
||||||
|
pPrint PatchFailed =
|
||||||
|
text (eDesc (Proxy :: Proxy PatchFailed))
|
||||||
|
|
||||||
|
instance HFErrorProject PatchFailed where
|
||||||
|
eBase _ = 270
|
||||||
|
eDesc _ = "A patch could not be applied."
|
||||||
|
|
||||||
|
-- | The tool requirements could not be found.
|
||||||
|
data NoToolRequirements = NoToolRequirements
|
||||||
|
deriving Show
|
||||||
|
|
||||||
|
instance Pretty NoToolRequirements where
|
||||||
|
pPrint NoToolRequirements =
|
||||||
|
text (eDesc (Proxy :: Proxy NoToolRequirements))
|
||||||
|
|
||||||
|
instance HFErrorProject NoToolRequirements where
|
||||||
|
eBase _ = 280
|
||||||
|
eDesc _ = "The Tool requirements could not be found."
|
||||||
|
|
||||||
|
data InvalidBuildConfig = InvalidBuildConfig Text
|
||||||
|
deriving Show
|
||||||
|
|
||||||
|
instance Pretty InvalidBuildConfig where
|
||||||
|
pPrint (InvalidBuildConfig reason) =
|
||||||
|
text "The build config is invalid. Reason was:" <+> pPrint reason
|
||||||
|
|
||||||
|
instance HFErrorProject InvalidBuildConfig where
|
||||||
|
eBase _ = 290
|
||||||
|
eDesc _ = "The build config is invalid."
|
||||||
|
|
||||||
|
data NoToolVersionSet = NoToolVersionSet Tool
|
||||||
|
deriving Show
|
||||||
|
|
||||||
|
instance Pretty NoToolVersionSet where
|
||||||
|
pPrint (NoToolVersionSet tool) =
|
||||||
|
text "No version is set for tool" <+> pPrint tool <+> text "."
|
||||||
|
|
||||||
|
instance HFErrorProject NoToolVersionSet where
|
||||||
|
eBase _ = 300
|
||||||
|
eDesc _ = "No version is set for tool (but was expected)."
|
||||||
|
|
||||||
|
data NoNetwork = NoNetwork
|
||||||
|
deriving Show
|
||||||
|
|
||||||
|
instance Pretty NoNetwork where
|
||||||
|
pPrint NoNetwork =
|
||||||
|
text (eDesc (Proxy :: Proxy NoNetwork))
|
||||||
|
|
||||||
|
instance HFErrorProject NoNetwork where
|
||||||
|
eBase _ = 310
|
||||||
|
eDesc _ = "A download was required or requested, but '--offline' was specified."
|
||||||
|
|
||||||
|
data HadrianNotFound = HadrianNotFound
|
||||||
|
deriving Show
|
||||||
|
|
||||||
|
instance Pretty HadrianNotFound where
|
||||||
|
pPrint HadrianNotFound =
|
||||||
|
text (eDesc (Proxy :: Proxy HadrianNotFound))
|
||||||
|
|
||||||
|
instance HFErrorProject HadrianNotFound where
|
||||||
|
eBase _ = 320
|
||||||
|
eDesc _ = "Could not find Hadrian build files. Does this GHC version support Hadrian builds?"
|
||||||
|
|
||||||
|
data ToolShadowed = ToolShadowed
|
||||||
|
Tool
|
||||||
|
FilePath -- shadow binary
|
||||||
|
FilePath -- upgraded binary
|
||||||
|
Version -- upgraded version
|
||||||
|
deriving Show
|
||||||
|
|
||||||
|
instance Pretty ToolShadowed where
|
||||||
|
pPrint (ToolShadowed tool sh up _) =
|
||||||
|
text (prettyShow tool
|
||||||
|
<> " is shadowed by "
|
||||||
|
<> sh
|
||||||
|
<> ".\nThe upgrade will not be in effect, unless you remove "
|
||||||
|
<> sh
|
||||||
|
<> "\nor make sure "
|
||||||
|
<> takeDirectory up
|
||||||
|
<> " comes before "
|
||||||
|
<> takeDirectory sh
|
||||||
|
<> " in PATH."
|
||||||
|
)
|
||||||
|
|
||||||
|
instance HFErrorProject ToolShadowed where
|
||||||
|
eBase _ = 330
|
||||||
|
eDesc _ = "A tool is shadowed in PATH."
|
||||||
|
|
||||||
-- | File content length verification failed.
|
-- | File content length verification failed.
|
||||||
data ContentLengthError = ContentLengthError (Maybe FilePath) (Maybe Integer) Integer
|
data ContentLengthError = ContentLengthError (Maybe FilePath) (Maybe Integer) Integer
|
||||||
deriving Show
|
deriving Show
|
||||||
@@ -242,125 +636,16 @@ instance Pretty ContentLengthError where
|
|||||||
|
|
||||||
instance Exception ContentLengthError
|
instance Exception ContentLengthError
|
||||||
|
|
||||||
-- | File digest verification failed.
|
instance HFErrorProject ContentLengthError where
|
||||||
data GPGError = forall xs . (ToVariantMaybe DownloadFailed xs, PopVariant DownloadFailed xs, Show (V xs), Pretty (V xs)) => GPGError (V xs)
|
eBase _ = 340
|
||||||
|
eDesc _ = "File content length verification failed"
|
||||||
deriving instance Show GPGError
|
|
||||||
|
|
||||||
instance Pretty GPGError where
|
|
||||||
pPrint (GPGError reason) = text "GPG verify failed:" <+> pPrint reason
|
|
||||||
|
|
||||||
-- | Unexpected HTTP status.
|
|
||||||
data HTTPStatusError = HTTPStatusError Int (M.Map (CI ByteString) ByteString)
|
|
||||||
deriving Show
|
|
||||||
|
|
||||||
instance Pretty HTTPStatusError where
|
|
||||||
pPrint (HTTPStatusError status _) =
|
|
||||||
text "Unexpected HTTP status:" <+> pPrint status
|
|
||||||
|
|
||||||
-- | Malformed headers.
|
|
||||||
data MalformedHeaders = MalformedHeaders Text
|
|
||||||
deriving Show
|
|
||||||
|
|
||||||
instance Pretty MalformedHeaders where
|
|
||||||
pPrint (MalformedHeaders h) =
|
|
||||||
text "Headers are malformed: " <+> pPrint h
|
|
||||||
|
|
||||||
-- | Unexpected HTTP status.
|
|
||||||
data HTTPNotModified = HTTPNotModified Text
|
|
||||||
deriving Show
|
|
||||||
|
|
||||||
instance Pretty HTTPNotModified where
|
|
||||||
pPrint (HTTPNotModified etag) =
|
|
||||||
text "Remote resource not modifed, etag was:" <+> pPrint etag
|
|
||||||
|
|
||||||
-- | The 'Location' header was expected during a 3xx redirect, but not found.
|
|
||||||
data NoLocationHeader = NoLocationHeader
|
|
||||||
deriving Show
|
|
||||||
|
|
||||||
instance Pretty NoLocationHeader where
|
|
||||||
pPrint NoLocationHeader =
|
|
||||||
text "The 'Location' header was expected during a 3xx redirect, but not found."
|
|
||||||
|
|
||||||
-- | Too many redirects.
|
|
||||||
data TooManyRedirs = TooManyRedirs
|
|
||||||
deriving Show
|
|
||||||
|
|
||||||
instance Pretty TooManyRedirs where
|
|
||||||
pPrint TooManyRedirs =
|
|
||||||
text "Too many redirections."
|
|
||||||
|
|
||||||
-- | A patch could not be applied.
|
|
||||||
data PatchFailed = PatchFailed
|
|
||||||
deriving Show
|
|
||||||
|
|
||||||
instance Pretty PatchFailed where
|
|
||||||
pPrint PatchFailed =
|
|
||||||
text "A patch could not be applied."
|
|
||||||
|
|
||||||
-- | The tool requirements could not be found.
|
|
||||||
data NoToolRequirements = NoToolRequirements
|
|
||||||
deriving Show
|
|
||||||
|
|
||||||
instance Pretty NoToolRequirements where
|
|
||||||
pPrint NoToolRequirements =
|
|
||||||
text "The Tool requirements could not be found."
|
|
||||||
|
|
||||||
data InvalidBuildConfig = InvalidBuildConfig Text
|
|
||||||
deriving Show
|
|
||||||
|
|
||||||
instance Pretty InvalidBuildConfig where
|
|
||||||
pPrint (InvalidBuildConfig reason) =
|
|
||||||
text "The build config is invalid. Reason was:" <+> pPrint reason
|
|
||||||
|
|
||||||
data NoToolVersionSet = NoToolVersionSet Tool
|
|
||||||
deriving Show
|
|
||||||
|
|
||||||
instance Pretty NoToolVersionSet where
|
|
||||||
pPrint (NoToolVersionSet tool) =
|
|
||||||
text "No version is set for tool" <+> pPrint tool <+> text "."
|
|
||||||
|
|
||||||
data NoNetwork = NoNetwork
|
|
||||||
deriving Show
|
|
||||||
|
|
||||||
instance Pretty NoNetwork where
|
|
||||||
pPrint NoNetwork =
|
|
||||||
text "A download was required or requested, but '--offline' was specified."
|
|
||||||
|
|
||||||
data HadrianNotFound = HadrianNotFound
|
|
||||||
deriving Show
|
|
||||||
|
|
||||||
instance Pretty HadrianNotFound where
|
|
||||||
pPrint HadrianNotFound =
|
|
||||||
text "Could not find Hadrian build files. Does this GHC version support Hadrian builds?"
|
|
||||||
|
|
||||||
data ToolShadowed = ToolShadowed
|
|
||||||
Tool
|
|
||||||
FilePath -- shadow binary
|
|
||||||
FilePath -- upgraded binary
|
|
||||||
Version -- upgraded version
|
|
||||||
deriving Show
|
|
||||||
|
|
||||||
instance Pretty ToolShadowed where
|
|
||||||
pPrint (ToolShadowed tool sh up _) =
|
|
||||||
text (prettyShow tool
|
|
||||||
<> " is shadowed by "
|
|
||||||
<> sh
|
|
||||||
<> ".\nThe upgrade will not be in effect, unless you remove "
|
|
||||||
<> sh
|
|
||||||
<> "\nor make sure "
|
|
||||||
<> takeDirectory up
|
|
||||||
<> " comes before "
|
|
||||||
<> takeDirectory sh
|
|
||||||
<> " in PATH."
|
|
||||||
)
|
|
||||||
|
|
||||||
-------------------------
|
-------------------------
|
||||||
--[ High-level errors ]--
|
--[ High-level errors ]--
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
-- | A download failed. The underlying error is encapsulated.
|
-- | A download failed. The underlying error is encapsulated.
|
||||||
data DownloadFailed = forall xs . (ToVariantMaybe DownloadFailed xs, PopVariant DownloadFailed xs, Show (V xs), Pretty (V xs)) => DownloadFailed (V xs)
|
data DownloadFailed = forall xs . (HFErrorProject (V xs), ToVariantMaybe DownloadFailed xs, PopVariant DownloadFailed xs, Show (V xs), Pretty (V xs)) => DownloadFailed (V xs)
|
||||||
|
|
||||||
instance Pretty DownloadFailed where
|
instance Pretty DownloadFailed where
|
||||||
pPrint (DownloadFailed reason) =
|
pPrint (DownloadFailed reason) =
|
||||||
@@ -370,7 +655,12 @@ instance Pretty DownloadFailed where
|
|||||||
|
|
||||||
deriving instance Show DownloadFailed
|
deriving instance Show DownloadFailed
|
||||||
|
|
||||||
data InstallSetError = forall xs1 xs2 . (Show (V xs1), Pretty (V xs1), Show (V xs2), Pretty (V xs2)) => InstallSetError (V xs1) (V xs2)
|
instance HFErrorProject DownloadFailed where
|
||||||
|
eBase _ = 5000
|
||||||
|
eNum (DownloadFailed xs) = 5000 + eNum xs
|
||||||
|
eDesc _ = "A download failed."
|
||||||
|
|
||||||
|
data InstallSetError = forall xs1 xs2 . (Show (V xs1), Pretty (V xs1), HFErrorProject (V xs1), Show (V xs2), Pretty (V xs2), HFErrorProject (V xs2)) => InstallSetError (V xs1) (V xs2)
|
||||||
|
|
||||||
instance Pretty InstallSetError where
|
instance Pretty InstallSetError where
|
||||||
pPrint (InstallSetError reason1 reason2) =
|
pPrint (InstallSetError reason1 reason2) =
|
||||||
@@ -381,9 +671,31 @@ instance Pretty InstallSetError where
|
|||||||
|
|
||||||
deriving instance Show InstallSetError
|
deriving instance Show InstallSetError
|
||||||
|
|
||||||
|
instance HFErrorProject InstallSetError where
|
||||||
|
eBase _ = 7000
|
||||||
|
-- will there be collisions?
|
||||||
|
eNum (InstallSetError xs1 xs2) = 7000 + eNum xs1 + eNum xs2
|
||||||
|
eDesc _ = "Installation or setting the tool failed."
|
||||||
|
|
||||||
|
|
||||||
|
-- | A test failed.
|
||||||
|
data TestFailed = forall es . (ToVariantMaybe TestFailed es, PopVariant TestFailed es, Pretty (V es), Show (V es), HFErrorProject (V es)) => TestFailed FilePath (V es)
|
||||||
|
|
||||||
|
instance Pretty TestFailed where
|
||||||
|
pPrint (TestFailed path reason) =
|
||||||
|
case reason of
|
||||||
|
VMaybe (_ :: TestFailed) -> pPrint reason
|
||||||
|
_ -> text ("The test failed. GHC test suite is fragile and non-portable. Please also check out the " <> linkEscapeCode "issue tracker" " https://gitlab.haskell.org/ghc/ghc/-/issues/?sort=updated_desc&state=opened&label_name%5B%5D=testsuite&label_name%5B%5D=packaging&first_page_size=20" <> ".\nBuild dir was:") <+> text path <+> text "\nReason was:" <+> pPrint reason
|
||||||
|
|
||||||
|
deriving instance Show TestFailed
|
||||||
|
|
||||||
|
instance HFErrorProject TestFailed where
|
||||||
|
eBase _ = 4000
|
||||||
|
eNum (TestFailed _ xs2) = 4000 + eNum xs2
|
||||||
|
eDesc _ = "The test failed."
|
||||||
|
|
||||||
-- | A build failed.
|
-- | A build failed.
|
||||||
data BuildFailed = forall es . (ToVariantMaybe BuildFailed es, PopVariant BuildFailed es, Pretty (V es), Show (V es)) => BuildFailed FilePath (V es)
|
data BuildFailed = forall es . (ToVariantMaybe BuildFailed es, PopVariant BuildFailed es, Pretty (V es), Show (V es), HFErrorProject (V es)) => BuildFailed FilePath (V es)
|
||||||
|
|
||||||
instance Pretty BuildFailed where
|
instance Pretty BuildFailed where
|
||||||
pPrint (BuildFailed path reason) =
|
pPrint (BuildFailed path reason) =
|
||||||
@@ -393,18 +705,28 @@ instance Pretty BuildFailed where
|
|||||||
|
|
||||||
deriving instance Show BuildFailed
|
deriving instance Show BuildFailed
|
||||||
|
|
||||||
|
instance HFErrorProject BuildFailed where
|
||||||
|
eBase _ = 8000
|
||||||
|
eNum (BuildFailed _ xs2) = 8000 + eNum xs2
|
||||||
|
eDesc _ = "The build failed."
|
||||||
|
|
||||||
|
|
||||||
-- | Setting the current GHC version failed.
|
-- | Setting the current GHC version failed.
|
||||||
data GHCupSetError = forall es . (ToVariantMaybe GHCupSetError es, PopVariant GHCupSetError es, Show (V es), Pretty (V es)) => GHCupSetError (V es)
|
data GHCupSetError = forall es . (ToVariantMaybe GHCupSetError es, PopVariant GHCupSetError es, Show (V es), Pretty (V es), HFErrorProject (V es)) => GHCupSetError (V es)
|
||||||
|
|
||||||
instance Pretty GHCupSetError where
|
instance Pretty GHCupSetError where
|
||||||
pPrint (GHCupSetError reason) =
|
pPrint (GHCupSetError reason) =
|
||||||
case reason of
|
case reason of
|
||||||
VMaybe (_ :: GHCupSetError) -> pPrint reason
|
VMaybe (_ :: GHCupSetError) -> pPrint reason
|
||||||
_ -> text "Setting the current GHC version failed:" <+> pPrint reason
|
_ -> text "Setting the current version failed:" <+> pPrint reason
|
||||||
|
|
||||||
deriving instance Show GHCupSetError
|
deriving instance Show GHCupSetError
|
||||||
|
|
||||||
|
instance HFErrorProject GHCupSetError where
|
||||||
|
eBase _ = 9000
|
||||||
|
eNum (GHCupSetError xs) = 9000 + eNum xs
|
||||||
|
eDesc _ = "Setting the current version failed."
|
||||||
|
|
||||||
|
|
||||||
---------------------------------------------
|
---------------------------------------------
|
||||||
--[ True Exceptions (e.g. for MonadThrow) ]--
|
--[ True Exceptions (e.g. for MonadThrow) ]--
|
||||||
@@ -421,6 +743,10 @@ instance Pretty ParseError where
|
|||||||
|
|
||||||
instance Exception ParseError
|
instance Exception ParseError
|
||||||
|
|
||||||
|
instance HFErrorProject ParseError where
|
||||||
|
eBase _ = 500
|
||||||
|
eDesc _ = "A parse error occured."
|
||||||
|
|
||||||
|
|
||||||
data UnexpectedListLength = UnexpectedListLength String
|
data UnexpectedListLength = UnexpectedListLength String
|
||||||
deriving Show
|
deriving Show
|
||||||
@@ -431,6 +757,10 @@ instance Pretty UnexpectedListLength where
|
|||||||
|
|
||||||
instance Exception UnexpectedListLength
|
instance Exception UnexpectedListLength
|
||||||
|
|
||||||
|
instance HFErrorProject UnexpectedListLength where
|
||||||
|
eBase _ = 510
|
||||||
|
eDesc _ = "A list had an unexpected length."
|
||||||
|
|
||||||
data NoUrlBase = NoUrlBase Text
|
data NoUrlBase = NoUrlBase Text
|
||||||
deriving Show
|
deriving Show
|
||||||
|
|
||||||
@@ -440,6 +770,10 @@ instance Pretty NoUrlBase where
|
|||||||
|
|
||||||
instance Exception NoUrlBase
|
instance Exception NoUrlBase
|
||||||
|
|
||||||
|
instance HFErrorProject NoUrlBase where
|
||||||
|
eBase _ = 520
|
||||||
|
eDesc _ = "URL does not have a base filename."
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
------------------------
|
------------------------
|
||||||
@@ -459,6 +793,23 @@ instance
|
|||||||
Right x -> pPrint x
|
Right x -> pPrint x
|
||||||
Left xs -> pPrint xs
|
Left xs -> pPrint xs
|
||||||
|
|
||||||
|
instance HFErrorProject (V '[]) where
|
||||||
|
{-# INLINABLE eBase #-}
|
||||||
|
eBase _ = undefined
|
||||||
|
{-# INLINABLE eDesc #-}
|
||||||
|
eDesc _ = undefined
|
||||||
|
|
||||||
|
instance
|
||||||
|
( HFErrorProject x
|
||||||
|
, HFErrorProject (V xs)
|
||||||
|
) => HFErrorProject (V (x ': xs))
|
||||||
|
where
|
||||||
|
eNum v = case popVariantHead v of
|
||||||
|
Right x -> eNum x
|
||||||
|
Left xs -> eNum xs
|
||||||
|
eDesc _ = undefined
|
||||||
|
eBase _ = undefined
|
||||||
|
|
||||||
instance Pretty URIParseError where
|
instance Pretty URIParseError where
|
||||||
pPrint (MalformedScheme reason) =
|
pPrint (MalformedScheme reason) =
|
||||||
text "Failed to parse URI. Malformed scheme:" <+> text (show reason)
|
text "Failed to parse URI. Malformed scheme:" <+> text (show reason)
|
||||||
@@ -477,6 +828,22 @@ instance Pretty URIParseError where
|
|||||||
pPrint (OtherError err) =
|
pPrint (OtherError err) =
|
||||||
text "Failed to parse URI:" <+> pPrint err
|
text "Failed to parse URI:" <+> pPrint err
|
||||||
|
|
||||||
|
instance HFErrorProject URIParseError where
|
||||||
|
eBase _ = 800
|
||||||
|
|
||||||
|
eNum (MalformedScheme NonAlphaLeading) = 801
|
||||||
|
eNum (MalformedScheme InvalidChars) = 802
|
||||||
|
eNum (MalformedScheme MissingColon) = 803
|
||||||
|
eNum MalformedUserInfo = 804
|
||||||
|
eNum MalformedQuery = 805
|
||||||
|
eNum MalformedFragment = 806
|
||||||
|
eNum MalformedHost = 807
|
||||||
|
eNum MalformedPort = 808
|
||||||
|
eNum MalformedPath = 809
|
||||||
|
eNum (OtherError _) = 810
|
||||||
|
|
||||||
|
eDesc _ = "Failed to parse URI."
|
||||||
|
|
||||||
instance Pretty ArchiveResult where
|
instance Pretty ArchiveResult where
|
||||||
pPrint ArchiveFatal = text "Archive result: fatal"
|
pPrint ArchiveFatal = text "Archive result: fatal"
|
||||||
pPrint ArchiveFailed = text "Archive result: failed"
|
pPrint ArchiveFailed = text "Archive result: failed"
|
||||||
@@ -485,5 +852,37 @@ instance Pretty ArchiveResult where
|
|||||||
pPrint ArchiveOk = text "Archive result: Ok"
|
pPrint ArchiveOk = text "Archive result: Ok"
|
||||||
pPrint ArchiveEOF = text "Archive result: EOF"
|
pPrint ArchiveEOF = text "Archive result: EOF"
|
||||||
|
|
||||||
|
instance HFErrorProject ArchiveResult where
|
||||||
|
eBase _ = 820
|
||||||
|
|
||||||
|
eNum ArchiveFatal = 821
|
||||||
|
eNum ArchiveFailed = 822
|
||||||
|
eNum ArchiveWarn = 823
|
||||||
|
eNum ArchiveRetry = 824
|
||||||
|
eNum ArchiveOk = 825
|
||||||
|
eNum ArchiveEOF = 826
|
||||||
|
|
||||||
|
eDesc _ = "Archive extraction result."
|
||||||
|
|
||||||
instance Pretty T.Text where
|
instance Pretty T.Text where
|
||||||
pPrint = text . T.unpack
|
pPrint = text . T.unpack
|
||||||
|
|
||||||
|
instance Pretty ProcessError where
|
||||||
|
pPrint (NonZeroExit e exe args) =
|
||||||
|
text "Process" <+> pPrint exe <+> text "with arguments" <+> pPrint args <+> text "failed with exit code" <+> text (show e <> ".")
|
||||||
|
pPrint (PTerminated exe args) =
|
||||||
|
text "Process" <+> pPrint exe <+> text "with arguments" <+> pPrint args <+> text "terminated."
|
||||||
|
pPrint (PStopped exe args) =
|
||||||
|
text "Process" <+> pPrint exe <+> text "with arguments" <+> pPrint args <+> text "stopped."
|
||||||
|
pPrint (NoSuchPid exe args) =
|
||||||
|
text "Could not find PID for process running " <+> pPrint exe <+> text " with arguments " <+> text (show args) <+> text "."
|
||||||
|
|
||||||
|
instance HFErrorProject ProcessError where
|
||||||
|
eBase _ = 840
|
||||||
|
|
||||||
|
eNum NonZeroExit{} = 841
|
||||||
|
eNum (PTerminated _ _) = 842
|
||||||
|
eNum (PStopped _ _) = 843
|
||||||
|
eNum (NoSuchPid _ _) = 844
|
||||||
|
|
||||||
|
eDesc _ = "A process exited prematurely."
|
||||||
|
|||||||
140
lib/GHCup/GHC.hs
140
lib/GHCup/GHC.hs
@@ -86,6 +86,144 @@ data GHCVer v = SourceDist v
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--------------------
|
||||||
|
--[ Tool testing ]--
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
testGHCVer :: ( MonadFail m
|
||||||
|
, MonadMask m
|
||||||
|
, MonadCatch m
|
||||||
|
, MonadReader env m
|
||||||
|
, HasDirs env
|
||||||
|
, HasSettings env
|
||||||
|
, HasPlatformReq env
|
||||||
|
, HasGHCupInfo env
|
||||||
|
, HasLog env
|
||||||
|
, MonadResource m
|
||||||
|
, MonadIO m
|
||||||
|
, MonadUnliftIO m
|
||||||
|
)
|
||||||
|
=> Version
|
||||||
|
-> [T.Text]
|
||||||
|
-> Excepts
|
||||||
|
'[ DigestError
|
||||||
|
, ContentLengthError
|
||||||
|
, GPGError
|
||||||
|
, DownloadFailed
|
||||||
|
, NoDownload
|
||||||
|
, ArchiveResult
|
||||||
|
, TarDirDoesNotExist
|
||||||
|
, UnknownArchive
|
||||||
|
, TestFailed
|
||||||
|
]
|
||||||
|
m
|
||||||
|
()
|
||||||
|
testGHCVer ver addMakeArgs = do
|
||||||
|
GHCupInfo { _ghcupDownloads = dls } <- lift getGHCupInfo
|
||||||
|
|
||||||
|
dlInfo <-
|
||||||
|
preview (ix GHC % ix ver % viTestDL % _Just) dls
|
||||||
|
?? NoDownload
|
||||||
|
|
||||||
|
liftE $ testGHCBindist dlInfo ver addMakeArgs
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
testGHCBindist :: ( MonadFail m
|
||||||
|
, MonadMask m
|
||||||
|
, MonadCatch m
|
||||||
|
, MonadReader env m
|
||||||
|
, HasDirs env
|
||||||
|
, HasSettings env
|
||||||
|
, HasPlatformReq env
|
||||||
|
, HasGHCupInfo env
|
||||||
|
, HasLog env
|
||||||
|
, MonadResource m
|
||||||
|
, MonadIO m
|
||||||
|
, MonadUnliftIO m
|
||||||
|
)
|
||||||
|
=> DownloadInfo
|
||||||
|
-> Version
|
||||||
|
-> [T.Text]
|
||||||
|
-> Excepts
|
||||||
|
'[ DigestError
|
||||||
|
, ContentLengthError
|
||||||
|
, GPGError
|
||||||
|
, DownloadFailed
|
||||||
|
, NoDownload
|
||||||
|
, ArchiveResult
|
||||||
|
, TarDirDoesNotExist
|
||||||
|
, UnknownArchive
|
||||||
|
, TestFailed
|
||||||
|
]
|
||||||
|
m
|
||||||
|
()
|
||||||
|
testGHCBindist dlinfo ver addMakeArgs = do
|
||||||
|
-- download (or use cached version)
|
||||||
|
dl <- liftE $ downloadCached dlinfo Nothing
|
||||||
|
|
||||||
|
liftE $ testPackedGHC dl (view dlSubdir dlinfo) ver addMakeArgs
|
||||||
|
|
||||||
|
|
||||||
|
testPackedGHC :: ( MonadMask m
|
||||||
|
, MonadCatch m
|
||||||
|
, MonadReader env m
|
||||||
|
, HasDirs env
|
||||||
|
, HasPlatformReq env
|
||||||
|
, HasSettings env
|
||||||
|
, MonadThrow m
|
||||||
|
, HasLog env
|
||||||
|
, MonadIO m
|
||||||
|
, MonadUnliftIO m
|
||||||
|
, MonadFail m
|
||||||
|
, MonadResource m
|
||||||
|
)
|
||||||
|
=> FilePath -- ^ Path to the packed GHC bindist
|
||||||
|
-> Maybe TarDir -- ^ Subdir of the archive
|
||||||
|
-> Version -- ^ The GHC version
|
||||||
|
-> [T.Text] -- ^ additional make args
|
||||||
|
-> Excepts
|
||||||
|
'[ ArchiveResult, UnknownArchive, TarDirDoesNotExist, TestFailed ] m ()
|
||||||
|
testPackedGHC dl msubdir ver addMakeArgs = do
|
||||||
|
-- unpack
|
||||||
|
tmpUnpack <- lift mkGhcupTmpDir
|
||||||
|
liftE $ cleanUpOnError tmpUnpack (unpackToDir (fromGHCupPath tmpUnpack) dl)
|
||||||
|
|
||||||
|
-- the subdir of the archive where we do the work
|
||||||
|
workdir <- maybe (pure tmpUnpack)
|
||||||
|
(liftE . intoSubdir tmpUnpack)
|
||||||
|
msubdir
|
||||||
|
|
||||||
|
reThrowAll @_ @'[ArchiveResult, UnknownArchive, TarDirDoesNotExist, ProcessError]
|
||||||
|
(TestFailed (fromGHCupPath workdir)) $ liftE $ runBuildAction tmpUnpack
|
||||||
|
(testUnpackedGHC workdir ver addMakeArgs)
|
||||||
|
|
||||||
|
testUnpackedGHC :: ( MonadReader env m
|
||||||
|
, HasDirs env
|
||||||
|
, HasSettings env
|
||||||
|
, MonadThrow m
|
||||||
|
, HasLog env
|
||||||
|
, MonadIO m
|
||||||
|
)
|
||||||
|
=> GHCupPath -- ^ Path to the unpacked GHC bindist (where the make file resides)
|
||||||
|
-> Version -- ^ The GHC version
|
||||||
|
-> [T.Text] -- ^ additional configure args for bindist
|
||||||
|
-> Excepts '[ProcessError] m ()
|
||||||
|
testUnpackedGHC path ver addMakeArgs = do
|
||||||
|
lift $ logInfo $ "Testing GHC version " <> prettyVer ver <> "!"
|
||||||
|
ghcDir <- lift $ ghcupGHCDir (mkTVer ver)
|
||||||
|
let ghcBinDir = fromGHCupPath ghcDir </> "bin"
|
||||||
|
env <- liftIO $ addToPath ghcBinDir False
|
||||||
|
|
||||||
|
lEM $ make' (fmap T.unpack addMakeArgs)
|
||||||
|
(Just $ fromGHCupPath path)
|
||||||
|
"ghc-test"
|
||||||
|
(Just $ ("STAGE1_GHC", "ghc-" <> T.unpack (prettyVer ver)) : env)
|
||||||
|
pure ()
|
||||||
|
|
||||||
|
|
||||||
---------------------
|
---------------------
|
||||||
--[ Tool fetching ]--
|
--[ Tool fetching ]--
|
||||||
---------------------
|
---------------------
|
||||||
@@ -459,7 +597,7 @@ setGHC ver sghc mBinDir = do
|
|||||||
when (targetFile == "ghc") $
|
when (targetFile == "ghc") $
|
||||||
liftIO (isShadowed fullF) >>= \case
|
liftIO (isShadowed fullF) >>= \case
|
||||||
Nothing -> pure ()
|
Nothing -> pure ()
|
||||||
Just pa -> lift $ logWarn $ T.pack $ prettyShow (ToolShadowed GHC pa fullF (_tvVersion ver))
|
Just pa -> lift $ logWarn $ T.pack $ prettyHFError (ToolShadowed GHC pa fullF (_tvVersion ver))
|
||||||
|
|
||||||
when (isNothing mBinDir) $ do
|
when (isNothing mBinDir) $ do
|
||||||
-- create symlink for share dir
|
-- create symlink for share dir
|
||||||
|
|||||||
@@ -68,7 +68,6 @@ import qualified Data.List.NonEmpty as NE
|
|||||||
import qualified Data.ByteString as B
|
import qualified Data.ByteString as B
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import qualified Text.Megaparsec as MP
|
import qualified Text.Megaparsec as MP
|
||||||
import Text.PrettyPrint.HughesPJClass (prettyShow)
|
|
||||||
|
|
||||||
|
|
||||||
data HLSVer = SourceDist Version
|
data HLSVer = SourceDist Version
|
||||||
@@ -634,7 +633,7 @@ setHLS ver shls mBinDir = do
|
|||||||
|
|
||||||
liftIO (isShadowed wrapper) >>= \case
|
liftIO (isShadowed wrapper) >>= \case
|
||||||
Nothing -> pure ()
|
Nothing -> pure ()
|
||||||
Just pa -> lift $ logWarn $ T.pack $ prettyShow (ToolShadowed HLS pa wrapper ver)
|
Just pa -> lift $ logWarn $ T.pack $ prettyHFError (ToolShadowed HLS pa wrapper ver)
|
||||||
|
|
||||||
|
|
||||||
unsetHLS :: ( MonadMask m
|
unsetHLS :: ( MonadMask m
|
||||||
|
|||||||
@@ -41,24 +41,26 @@ import GHCup.Prelude.Posix
|
|||||||
import Control.Monad.IO.Class
|
import Control.Monad.IO.Class
|
||||||
import Control.Monad.Reader
|
import Control.Monad.Reader
|
||||||
import Haskus.Utils.Variant.Excepts
|
import Haskus.Utils.Variant.Excepts
|
||||||
import Text.PrettyPrint.HughesPJClass ( prettyShow, Pretty )
|
import Text.PrettyPrint.HughesPJClass ( Pretty )
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- for some obscure reason... this won't type-check if we move it to a different module
|
-- for some obscure reason... this won't type-check if we move it to a different module
|
||||||
catchWarn :: forall es m env . ( Pretty (V es)
|
catchWarn :: forall es m env . ( Pretty (V es)
|
||||||
|
, HFErrorProject (V es)
|
||||||
, MonadReader env m
|
, MonadReader env m
|
||||||
, HasLog env
|
, HasLog env
|
||||||
, MonadIO m
|
, MonadIO m
|
||||||
, Monad m) => Excepts es m () -> Excepts '[] m ()
|
, Monad m) => Excepts es m () -> Excepts '[] m ()
|
||||||
catchWarn = catchAllE @_ @es (\v -> lift $ logWarn (T.pack . prettyShow $ v))
|
catchWarn = catchAllE @_ @es (\v -> lift $ logWarn (T.pack . prettyHFError $ v))
|
||||||
|
|
||||||
|
|
||||||
runBothE' :: forall e m a b .
|
runBothE' :: forall e m a b .
|
||||||
( Monad m
|
( Monad m
|
||||||
, Show (V e)
|
, Show (V e)
|
||||||
, Pretty (V e)
|
, Pretty (V e)
|
||||||
|
, HFErrorProject (V e)
|
||||||
, PopVariant InstallSetError e
|
, PopVariant InstallSetError e
|
||||||
, LiftVariant' e (InstallSetError ': e)
|
, LiftVariant' e (InstallSetError ': e)
|
||||||
, e :<< (InstallSetError ': e)
|
, e :<< (InstallSetError ': e)
|
||||||
|
|||||||
@@ -50,7 +50,6 @@ import System.FilePath
|
|||||||
import System.IO.Error
|
import System.IO.Error
|
||||||
|
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import Text.PrettyPrint.HughesPJClass (prettyShow)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -234,7 +233,7 @@ setStack ver = do
|
|||||||
|
|
||||||
liftIO (isShadowed stackbin) >>= \case
|
liftIO (isShadowed stackbin) >>= \case
|
||||||
Nothing -> pure ()
|
Nothing -> pure ()
|
||||||
Just pa -> lift $ logWarn $ T.pack $ prettyShow (ToolShadowed Cabal pa stackbin ver)
|
Just pa -> lift $ logWarn $ T.pack $ prettyHFError (ToolShadowed Cabal pa stackbin ver)
|
||||||
|
|
||||||
pure ()
|
pure ()
|
||||||
|
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ import Data.Text ( Text )
|
|||||||
import Data.Versions
|
import Data.Versions
|
||||||
import GHC.IO.Exception ( ExitCode )
|
import GHC.IO.Exception ( ExitCode )
|
||||||
import Optics ( makeLenses )
|
import Optics ( makeLenses )
|
||||||
import Text.PrettyPrint.HughesPJClass (Pretty, pPrint, text, (<+>))
|
import Text.PrettyPrint.HughesPJClass (Pretty, pPrint, text)
|
||||||
import URI.ByteString
|
import URI.ByteString
|
||||||
#if defined(BRICK)
|
#if defined(BRICK)
|
||||||
import Graphics.Vty ( Key(..) )
|
import Graphics.Vty ( Key(..) )
|
||||||
@@ -138,6 +138,7 @@ data VersionInfo = VersionInfo
|
|||||||
{ _viTags :: [Tag] -- ^ version specific tag
|
{ _viTags :: [Tag] -- ^ version specific tag
|
||||||
, _viChangeLog :: Maybe URI
|
, _viChangeLog :: Maybe URI
|
||||||
, _viSourceDL :: Maybe DownloadInfo -- ^ source tarball
|
, _viSourceDL :: Maybe DownloadInfo -- ^ source tarball
|
||||||
|
, _viTestDL :: Maybe DownloadInfo -- ^ test tarball
|
||||||
, _viArch :: ArchitectureSpec -- ^ descend for binary downloads per arch
|
, _viArch :: ArchitectureSpec -- ^ descend for binary downloads per arch
|
||||||
-- informative messages
|
-- informative messages
|
||||||
, _viPostInstall :: Maybe Text
|
, _viPostInstall :: Maybe Text
|
||||||
@@ -632,15 +633,7 @@ data ProcessError = NonZeroExit Int FilePath [String]
|
|||||||
| NoSuchPid FilePath [String]
|
| NoSuchPid FilePath [String]
|
||||||
deriving Show
|
deriving Show
|
||||||
|
|
||||||
instance Pretty ProcessError where
|
|
||||||
pPrint (NonZeroExit e exe args) =
|
|
||||||
text "Process" <+> pPrint exe <+> text "with arguments" <+> pPrint args <+> text "failed with exit code" <+> text (show e <> ".")
|
|
||||||
pPrint (PTerminated exe args) =
|
|
||||||
text "Process" <+> pPrint exe <+> text "with arguments" <+> pPrint args <+> text "terminated."
|
|
||||||
pPrint (PStopped exe args) =
|
|
||||||
text "Process" <+> pPrint exe <+> text "with arguments" <+> pPrint args <+> text "stopped."
|
|
||||||
pPrint (NoSuchPid exe args) =
|
|
||||||
text "Could not find PID for process running " <+> pPrint exe <+> text " with arguments " <+> text (show args) <+> text "."
|
|
||||||
data CapturedProcess = CapturedProcess
|
data CapturedProcess = CapturedProcess
|
||||||
{ _exitCode :: ExitCode
|
{ _exitCode :: ExitCode
|
||||||
, _stdOut :: BL.ByteString
|
, _stdOut :: BL.ByteString
|
||||||
|
|||||||
@@ -93,6 +93,7 @@ import qualified Data.List.NonEmpty as NE
|
|||||||
import qualified Streamly.Prelude as S
|
import qualified Streamly.Prelude as S
|
||||||
import Control.DeepSeq (force)
|
import Control.DeepSeq (force)
|
||||||
import GHC.IO (evaluate)
|
import GHC.IO (evaluate)
|
||||||
|
import System.Environment (getEnvironment, setEnv)
|
||||||
|
|
||||||
|
|
||||||
-- $setup
|
-- $setup
|
||||||
@@ -967,11 +968,28 @@ make :: ( MonadThrow m
|
|||||||
=> [String]
|
=> [String]
|
||||||
-> Maybe FilePath
|
-> Maybe FilePath
|
||||||
-> m (Either ProcessError ())
|
-> m (Either ProcessError ())
|
||||||
make args workdir = do
|
make args workdir = make' args workdir "ghc-make" Nothing
|
||||||
|
|
||||||
|
|
||||||
|
-- | Calls gmake if it exists in PATH, otherwise make.
|
||||||
|
make' :: ( MonadThrow m
|
||||||
|
, MonadIO m
|
||||||
|
, MonadReader env m
|
||||||
|
, HasDirs env
|
||||||
|
, HasLog env
|
||||||
|
, HasSettings env
|
||||||
|
)
|
||||||
|
=> [String]
|
||||||
|
-> Maybe FilePath
|
||||||
|
-> FilePath -- ^ log filename (opened in append mode)
|
||||||
|
-> Maybe [(String, String)] -- ^ optional environment
|
||||||
|
-> m (Either ProcessError ())
|
||||||
|
make' args workdir logfile menv = do
|
||||||
spaths <- liftIO getSearchPath
|
spaths <- liftIO getSearchPath
|
||||||
has_gmake <- isJust <$> liftIO (searchPath spaths "gmake")
|
has_gmake <- isJust <$> liftIO (searchPath spaths "gmake")
|
||||||
let mymake = if has_gmake then "gmake" else "make"
|
let mymake = if has_gmake then "gmake" else "make"
|
||||||
execLogged mymake args workdir "ghc-make" Nothing
|
execLogged mymake args workdir logfile menv
|
||||||
|
|
||||||
|
|
||||||
makeOut :: (MonadReader env m, HasDirs env, MonadIO m)
|
makeOut :: (MonadReader env m, HasDirs env, MonadIO m)
|
||||||
=> [String]
|
=> [String]
|
||||||
@@ -1282,6 +1300,22 @@ warnAboutHlsCompatibility = do
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
addToPath :: FilePath
|
||||||
|
-> Bool -- ^ if False will prepend
|
||||||
|
-> IO [(String, String)]
|
||||||
|
addToPath path append = do
|
||||||
|
cEnv <- Map.fromList <$> getEnvironment
|
||||||
|
let paths = ["PATH", "Path"]
|
||||||
|
curPaths = (\x -> maybe [] splitSearchPath (Map.lookup x cEnv)) =<< paths
|
||||||
|
{- HLINT ignore "Redundant bracket" -}
|
||||||
|
newPath = intercalate [searchPathSeparator] (if append then (curPaths ++ [path]) else (path : curPaths))
|
||||||
|
envWithoutPath = foldr (\x y -> Map.delete x y) cEnv paths
|
||||||
|
pathVar = if isWindows then "Path" else "PATH"
|
||||||
|
envWithNewPath = Map.toList $ Map.insert pathVar newPath envWithoutPath
|
||||||
|
liftIO $ setEnv pathVar newPath
|
||||||
|
return envWithNewPath
|
||||||
|
|
||||||
|
|
||||||
-----------
|
-----------
|
||||||
--[ Git ]--
|
--[ Git ]--
|
||||||
-----------
|
-----------
|
||||||
@@ -1301,7 +1335,7 @@ gitOut args dir = do
|
|||||||
ExitSuccess -> pure $ T.pack $ stripNewlineEnd $ T.unpack $ decUTF8Safe' _stdOut
|
ExitSuccess -> pure $ T.pack $ stripNewlineEnd $ T.unpack $ decUTF8Safe' _stdOut
|
||||||
ExitFailure c -> do
|
ExitFailure c -> do
|
||||||
let pe = NonZeroExit c "git" args
|
let pe = NonZeroExit c "git" args
|
||||||
lift $ logDebug $ T.pack (prettyShow pe)
|
lift $ logDebug $ T.pack (prettyHFError pe)
|
||||||
throwE pe
|
throwE pe
|
||||||
|
|
||||||
processBranches :: T.Text -> [String]
|
processBranches :: T.Text -> [String]
|
||||||
|
|||||||
@@ -285,7 +285,8 @@
|
|||||||
"base-8.7.6",
|
"base-8.7.6",
|
||||||
"Latest",
|
"Latest",
|
||||||
"Prerelease"
|
"Prerelease"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"7.5.5": {
|
"7.5.5": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -387,7 +388,8 @@
|
|||||||
"base-4.7.6",
|
"base-4.7.6",
|
||||||
"\u0001+n𫛚\r",
|
"\u0001+n𫛚\r",
|
||||||
"Latest"
|
"Latest"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"7.7.6": {
|
"7.7.6": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -509,7 +511,8 @@
|
|||||||
"old",
|
"old",
|
||||||
"base-3.1.4",
|
"base-3.1.4",
|
||||||
"Prerelease"
|
"Prerelease"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"8.8.6": {
|
"8.8.6": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -824,7 +827,8 @@
|
|||||||
"base-5.2.3",
|
"base-5.2.3",
|
||||||
"Prerelease",
|
"Prerelease",
|
||||||
"Latest"
|
"Latest"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"HLS": {
|
"HLS": {
|
||||||
@@ -1084,7 +1088,8 @@
|
|||||||
"Latest",
|
"Latest",
|
||||||
"Latest",
|
"Latest",
|
||||||
"Recommended"
|
"Recommended"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"2.1.4": {
|
"2.1.4": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -1240,7 +1245,8 @@
|
|||||||
"viTags": [
|
"viTags": [
|
||||||
"Prerelease",
|
"Prerelease",
|
||||||
"base-4.7.4"
|
"base-4.7.4"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"3.3.7": {
|
"3.3.7": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -1670,7 +1676,8 @@
|
|||||||
},
|
},
|
||||||
"dlUri": "https:mkzzunx"
|
"dlUri": "https:mkzzunx"
|
||||||
},
|
},
|
||||||
"viTags": []
|
"viTags": [],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"3.5.3": {
|
"3.5.3": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -1972,7 +1979,8 @@
|
|||||||
"old",
|
"old",
|
||||||
"Recommended",
|
"Recommended",
|
||||||
"old"
|
"old"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"5.2.3": {
|
"5.2.3": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -2309,7 +2317,8 @@
|
|||||||
"Latest",
|
"Latest",
|
||||||
"Recommended",
|
"Recommended",
|
||||||
"Recommended"
|
"Recommended"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"8.5.2": {
|
"8.5.2": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -2431,7 +2440,8 @@
|
|||||||
"Latest",
|
"Latest",
|
||||||
"Latest",
|
"Latest",
|
||||||
"base-8.7.3"
|
"base-8.7.3"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -2880,7 +2890,8 @@
|
|||||||
},
|
},
|
||||||
"dlUri": "https:zxekodom"
|
"dlUri": "https:zxekodom"
|
||||||
},
|
},
|
||||||
"viTags": []
|
"viTags": [],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"3.2.1": {
|
"3.2.1": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -3100,7 +3111,8 @@
|
|||||||
"base-7.7.6",
|
"base-7.7.6",
|
||||||
"𩺈𥲬\u0015A~",
|
"𩺈𥲬\u0015A~",
|
||||||
"old"
|
"old"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"4.5.3": {
|
"4.5.3": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -3330,7 +3342,8 @@
|
|||||||
"base-1.5.2",
|
"base-1.5.2",
|
||||||
"Latest",
|
"Latest",
|
||||||
"old"
|
"old"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"7.3.9": {
|
"7.3.9": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -3688,7 +3701,8 @@
|
|||||||
"base-1.6.1",
|
"base-1.6.1",
|
||||||
"Prerelease",
|
"Prerelease",
|
||||||
"old"
|
"old"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"GHCup": {
|
"GHCup": {
|
||||||
@@ -3747,7 +3761,8 @@
|
|||||||
"Latest",
|
"Latest",
|
||||||
"\u0005s톕$\"g",
|
"\u0005s톕$\"g",
|
||||||
"Prerelease"
|
"Prerelease"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"3.5.3": {
|
"3.5.3": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -3880,7 +3895,8 @@
|
|||||||
"Latest",
|
"Latest",
|
||||||
"xZ\u000b",
|
"xZ\u000b",
|
||||||
"Recommended"
|
"Recommended"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"3.8.5": {
|
"3.8.5": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -3993,7 +4009,8 @@
|
|||||||
"viSourceDL": null,
|
"viSourceDL": null,
|
||||||
"viTags": [
|
"viTags": [
|
||||||
"old"
|
"old"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"4.1.6": {
|
"4.1.6": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -4179,7 +4196,8 @@
|
|||||||
"viTags": [
|
"viTags": [
|
||||||
"Latest",
|
"Latest",
|
||||||
"old"
|
"old"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"7.5.4": {
|
"7.5.4": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -4456,7 +4474,8 @@
|
|||||||
"viSourceDL": null,
|
"viSourceDL": null,
|
||||||
"viTags": [
|
"viTags": [
|
||||||
"鲤"
|
"鲤"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"HLS": {
|
"HLS": {
|
||||||
@@ -4827,7 +4846,8 @@
|
|||||||
"",
|
"",
|
||||||
"Ctj",
|
"Ctj",
|
||||||
"|Wd`"
|
"|Wd`"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"3.5.1": {
|
"3.5.1": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -4937,7 +4957,8 @@
|
|||||||
"old",
|
"old",
|
||||||
"Latest",
|
"Latest",
|
||||||
"Recommended"
|
"Recommended"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"4.2.2": {
|
"4.2.2": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -5030,7 +5051,8 @@
|
|||||||
"Recommended",
|
"Recommended",
|
||||||
"Recommended",
|
"Recommended",
|
||||||
"Latest"
|
"Latest"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"4.4.1": {
|
"4.4.1": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -5122,7 +5144,8 @@
|
|||||||
"Latest",
|
"Latest",
|
||||||
"Latest",
|
"Latest",
|
||||||
"Recommended"
|
"Recommended"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"5.7.2": {
|
"5.7.2": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -5473,7 +5496,8 @@
|
|||||||
"Prerelease",
|
"Prerelease",
|
||||||
"Prerelease",
|
"Prerelease",
|
||||||
"Recommended"
|
"Recommended"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"7.1.4": {
|
"7.1.4": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -5559,7 +5583,8 @@
|
|||||||
"Latest",
|
"Latest",
|
||||||
"\u0013ADq\u001bX<",
|
"\u0013ADq\u001bX<",
|
||||||
"base-8.2.4"
|
"base-8.2.4"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"8.2.3": {
|
"8.2.3": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -5667,7 +5692,8 @@
|
|||||||
"𠖛",
|
"𠖛",
|
||||||
"恦AD假n#",
|
"恦AD假n#",
|
||||||
"Prerelease"
|
"Prerelease"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"8.3.5": {
|
"8.3.5": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -6070,7 +6096,8 @@
|
|||||||
"Prerelease",
|
"Prerelease",
|
||||||
"%R灡𑈃pS",
|
"%R灡𑈃pS",
|
||||||
"Latest"
|
"Latest"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -7355,7 +7382,8 @@
|
|||||||
"old",
|
"old",
|
||||||
"Latest",
|
"Latest",
|
||||||
"base-8.5.8"
|
"base-8.5.8"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"2.1.4": {
|
"2.1.4": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -8043,7 +8071,8 @@
|
|||||||
"",
|
"",
|
||||||
"\u0018\u0017GF\u0018",
|
"\u0018\u0017GF\u0018",
|
||||||
"base-8.7.8"
|
"base-8.7.8"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"4.6.8": {
|
"4.6.8": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -8329,7 +8358,8 @@
|
|||||||
"base-8.1.6",
|
"base-8.1.6",
|
||||||
"old",
|
"old",
|
||||||
"Latest"
|
"Latest"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"5.1.8": {
|
"5.1.8": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -8529,7 +8559,8 @@
|
|||||||
"Prerelease",
|
"Prerelease",
|
||||||
"~X6*𦥹",
|
"~X6*𦥹",
|
||||||
"base-2.1.6"
|
"base-2.1.6"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"5.4.7": {
|
"5.4.7": {
|
||||||
"viArch": {},
|
"viArch": {},
|
||||||
@@ -8549,7 +8580,8 @@
|
|||||||
"9pR𥎷H",
|
"9pR𥎷H",
|
||||||
"base-7.5.6",
|
"base-7.5.6",
|
||||||
"Recommended"
|
"Recommended"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Stack": {
|
"Stack": {
|
||||||
@@ -8891,7 +8923,8 @@
|
|||||||
},
|
},
|
||||||
"dlUri": "http:gji"
|
"dlUri": "http:gji"
|
||||||
},
|
},
|
||||||
"viTags": []
|
"viTags": [],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"7.2.3": {
|
"7.2.3": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -9036,7 +9069,8 @@
|
|||||||
"old",
|
"old",
|
||||||
"Recommended",
|
"Recommended",
|
||||||
"base-2.5.2"
|
"base-2.5.2"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -10413,7 +10447,8 @@
|
|||||||
"Recommended",
|
"Recommended",
|
||||||
"S鴖xz",
|
"S鴖xz",
|
||||||
"Prerelease"
|
"Prerelease"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"4.4.4": {
|
"4.4.4": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -10725,7 +10760,8 @@
|
|||||||
"Prerelease",
|
"Prerelease",
|
||||||
"old",
|
"old",
|
||||||
"Latest"
|
"Latest"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"5.5.4": {
|
"5.5.4": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -11105,7 +11141,8 @@
|
|||||||
"Latest",
|
"Latest",
|
||||||
"base-1.8.1",
|
"base-1.8.1",
|
||||||
"Recommended"
|
"Recommended"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"5.6.4": {
|
"5.6.4": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -11348,7 +11385,8 @@
|
|||||||
"Prerelease",
|
"Prerelease",
|
||||||
">/~l\u0019\u0001F\u0003",
|
">/~l\u0019\u0001F\u0003",
|
||||||
"base-4.4.6"
|
"base-4.4.6"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"6.7.3": {
|
"6.7.3": {
|
||||||
"viArch": {},
|
"viArch": {},
|
||||||
@@ -11367,7 +11405,8 @@
|
|||||||
"viTags": [
|
"viTags": [
|
||||||
"old",
|
"old",
|
||||||
"old"
|
"old"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"8.5.5": {
|
"8.5.5": {
|
||||||
"viArch": {},
|
"viArch": {},
|
||||||
@@ -11388,7 +11427,8 @@
|
|||||||
"Latest",
|
"Latest",
|
||||||
"base-3.6.3",
|
"base-3.6.3",
|
||||||
"Recommended"
|
"Recommended"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"8.6.5": {
|
"8.6.5": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -11770,7 +11810,8 @@
|
|||||||
"v斾)k",
|
"v斾)k",
|
||||||
"Prerelease",
|
"Prerelease",
|
||||||
"Latest"
|
"Latest"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"GHC": {},
|
"GHC": {},
|
||||||
@@ -13541,7 +13582,8 @@
|
|||||||
},
|
},
|
||||||
"viTags": [
|
"viTags": [
|
||||||
"Prerelease"
|
"Prerelease"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"2.6.7": {
|
"2.6.7": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -13585,7 +13627,8 @@
|
|||||||
"viSourceDL": null,
|
"viSourceDL": null,
|
||||||
"viTags": [
|
"viTags": [
|
||||||
"Latest"
|
"Latest"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"3.3.5": {
|
"3.3.5": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -13608,7 +13651,8 @@
|
|||||||
"&Z3𭹡X",
|
"&Z3𭹡X",
|
||||||
"Prerelease",
|
"Prerelease",
|
||||||
"Prerelease"
|
"Prerelease"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"3.4.4": {
|
"3.4.4": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -14065,7 +14109,8 @@
|
|||||||
"f8\u0017xNft(",
|
"f8\u0017xNft(",
|
||||||
"Recommended",
|
"Recommended",
|
||||||
"Prerelease"
|
"Prerelease"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"6.5.7": {
|
"6.5.7": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -14242,7 +14287,8 @@
|
|||||||
"dlSubdir": "qG+0t",
|
"dlSubdir": "qG+0t",
|
||||||
"dlUri": "http:vvn"
|
"dlUri": "http:vvn"
|
||||||
},
|
},
|
||||||
"viTags": []
|
"viTags": [],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"6.6.3": {
|
"6.6.3": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -14310,7 +14356,8 @@
|
|||||||
"",
|
"",
|
||||||
"\u0014𣉈C\u0018V",
|
"\u0014𣉈C\u0018V",
|
||||||
"Recommended"
|
"Recommended"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"8.5.4": {
|
"8.5.4": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -14463,7 +14510,8 @@
|
|||||||
"Latest",
|
"Latest",
|
||||||
"\u0005I{5\u0013",
|
"\u0005I{5\u0013",
|
||||||
"base-3.8.8"
|
"base-3.8.8"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"GHCup": {
|
"GHCup": {
|
||||||
@@ -14635,7 +14683,8 @@
|
|||||||
"Latest",
|
"Latest",
|
||||||
"old",
|
"old",
|
||||||
"Latest"
|
"Latest"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"4.3.4": {
|
"4.3.4": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -14831,7 +14880,8 @@
|
|||||||
"\u0017M",
|
"\u0017M",
|
||||||
"old",
|
"old",
|
||||||
"Recommended"
|
"Recommended"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
},
|
},
|
||||||
"8.6.2": {
|
"8.6.2": {
|
||||||
"viArch": {
|
"viArch": {
|
||||||
@@ -15167,7 +15217,8 @@
|
|||||||
"Prerelease",
|
"Prerelease",
|
||||||
"Prerelease",
|
"Prerelease",
|
||||||
"base-5.1.6"
|
"base-5.1.6"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Stack": {
|
"Stack": {
|
||||||
@@ -15524,7 +15575,8 @@
|
|||||||
},
|
},
|
||||||
"viTags": [
|
"viTags": [
|
||||||
"Latest"
|
"Latest"
|
||||||
]
|
],
|
||||||
|
"viTestDL": null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user