2022-08-03 14:20:40 +03:00
|
|
|
module Commands.Dev
|
|
|
|
( module Commands.Dev,
|
2022-09-14 17:16:15 +03:00
|
|
|
module Commands.Dev.Options,
|
2022-07-12 20:08:03 +03:00
|
|
|
)
|
|
|
|
where
|
|
|
|
|
2022-09-14 17:16:15 +03:00
|
|
|
import Commands.Base
|
2022-09-29 18:44:55 +03:00
|
|
|
import Commands.Dev.Asm qualified as Asm
|
2022-09-14 17:16:15 +03:00
|
|
|
import Commands.Dev.Core qualified as Core
|
|
|
|
import Commands.Dev.DisplayRoot qualified as DisplayRoot
|
2023-02-22 17:27:40 +03:00
|
|
|
import Commands.Dev.Geb qualified as Geb
|
2022-09-14 17:16:15 +03:00
|
|
|
import Commands.Dev.Highlight qualified as Highlight
|
|
|
|
import Commands.Dev.Internal qualified as Internal
|
|
|
|
import Commands.Dev.Options
|
|
|
|
import Commands.Dev.Parse qualified as Parse
|
2022-11-03 11:38:09 +03:00
|
|
|
import Commands.Dev.Runtime qualified as Runtime
|
2022-09-14 17:16:15 +03:00
|
|
|
import Commands.Dev.Scope qualified as Scope
|
|
|
|
import Commands.Dev.Termination qualified as Termination
|
2023-03-31 01:57:44 +03:00
|
|
|
import Commands.Repl qualified as Repl
|
2022-09-14 17:16:15 +03:00
|
|
|
|
Update CI to install Smoke, Github actions, and Makefile fixes (#1735)
This PR adds some maintenance at different levels to the CI config, the
Make file, and formatting.
- Most of the actions used by the CI related to haskell, ormolu, hlint
and pre-commit have been updated because Github requires NodeJS 16. This
change removes all the old warnings related to nodeJs.
In the case of ormolu, the new version makes us format some files that
were not formatted before, similarly with hlint.
- The CI has been updated to use the latest version of the Smoke testing
framework, which introduced installation of the dependencies for Linux
(libicu66) and macOS (icu4c) in the CI. In the case of macOS, the CI
uses a binary for smoke. For Linux, we use stack to build smoke from the
source. The source here is in a fork of [the official Smoke
repo](https://github.com/SamirTalwar/smoke). Such includes some
features/changes that are not yet in the official repo.
- The Makefile runs the ormolu and hlint targets using as a path for the
binaries the environment variables ORMOLU and HLINT. Thus, export those
variables in your environment before running `make check,` `make format`
or `make hlint`. Otherwise, the Makefile will use the binaries provided
by `stack`.
Co-authored-by: Paul Cadman <git@paulcadman.dev>
2023-01-24 13:50:23 +03:00
|
|
|
runCommand :: (Members '[Embed IO, App] r) => DevCommand -> Sem r ()
|
2022-09-14 17:16:15 +03:00
|
|
|
runCommand = \case
|
|
|
|
Highlight opts -> Highlight.runCommand opts
|
|
|
|
Parse opts -> Parse.runCommand opts
|
|
|
|
Scope opts -> Scope.runCommand opts
|
|
|
|
Internal opts -> Internal.runCommand opts
|
|
|
|
Termination opts -> Termination.runCommand opts
|
|
|
|
Core opts -> Core.runCommand opts
|
2023-02-22 17:27:40 +03:00
|
|
|
Geb opts -> Geb.runCommand opts
|
2022-09-29 18:44:55 +03:00
|
|
|
Asm opts -> Asm.runCommand opts
|
2022-11-03 11:38:09 +03:00
|
|
|
Runtime opts -> Runtime.runCommand opts
|
2022-12-20 15:05:40 +03:00
|
|
|
DisplayRoot opts -> DisplayRoot.runCommand opts
|
2023-03-31 01:57:44 +03:00
|
|
|
JuvixDevRepl opts -> Repl.runCommand opts
|