about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/ghc
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/ghc')
-rw-r--r--third_party/bazel/rules_haskell/tests/ghc/BUILD.bazel3
-rw-r--r--third_party/bazel/rules_haskell/tests/ghc/ghc.bzl19
2 files changed, 0 insertions, 22 deletions
diff --git a/third_party/bazel/rules_haskell/tests/ghc/BUILD.bazel b/third_party/bazel/rules_haskell/tests/ghc/BUILD.bazel
deleted file mode 100644
index 345ce4badf91..000000000000
--- a/third_party/bazel/rules_haskell/tests/ghc/BUILD.bazel
+++ /dev/null
@@ -1,3 +0,0 @@
-load("//tests/ghc:ghc.bzl", "ghc_help")
-
-ghc_help(name = "ghc_help")
diff --git a/third_party/bazel/rules_haskell/tests/ghc/ghc.bzl b/third_party/bazel/rules_haskell/tests/ghc/ghc.bzl
deleted file mode 100644
index 443f04e7be63..000000000000
--- a/third_party/bazel/rules_haskell/tests/ghc/ghc.bzl
+++ /dev/null
@@ -1,19 +0,0 @@
-"""Runs ghc --help"""
-
-hs_toolchain = "@io_tweag_rules_haskell//haskell:toolchain"
-
-def _impl(ctx):
-    output = ctx.outputs.out
-    ghc = ctx.toolchains[hs_toolchain].tools.ghc
-    ctx.actions.run_shell(
-        inputs = [ghc],
-        outputs = [output],
-        progress_message = "Printing ghc help message",
-        command = "%s --help > %s" % (ghc.path, output.path),
-    )
-
-ghc_help = rule(
-    implementation = _impl,
-    outputs = {"out": "out_file"},
-    toolchains = [hs_toolchain],
-)