diff options
author | Vincent Ambo <tazjin@google.com> | 2019-08-15T15·11+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-08-15T15·11+0100 |
commit | 128875b501bc2989617ae553317b80faa556d752 (patch) | |
tree | 9b32d12123801179ebe900980556486ad4803482 /third_party/bazel/rules_haskell/tests/run-start-script.sh | |
parent | a20daf87265a62b494d67f86d4a5199f14394973 (diff) |
chore: Remove remaining Bazel-related files r/31
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/run-start-script.sh')
-rwxr-xr-x | third_party/bazel/rules_haskell/tests/run-start-script.sh | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/third_party/bazel/rules_haskell/tests/run-start-script.sh b/third_party/bazel/rules_haskell/tests/run-start-script.sh deleted file mode 100755 index 6803581f0010..000000000000 --- a/third_party/bazel/rules_haskell/tests/run-start-script.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh - -# Run the start script in its own workspace -# and build the example binary target. - -set -e - -pwd=$(pwd) -cd $(mktemp -d) -$pwd/start - -# Copy the bazel configuration, this is only useful for CI -mkdir tools -cp $pwd/.bazelrc .bazelrc - -# Set Nixpkgs in environment variable to avoid hardcoding it in -# start script itself. - -# overrides the used rules_haskell, because -# when we're testing the start on a feature branch (CI), -# the latest rules_haskell version doesn't always work. -# If on the branch we update Bazel to a version with breaking -# changes, then we need to adapt to those changes in the branch. -# Which in turn means the start script should pull in those changes too. - -NIX_PATH=nixpkgs=$pwd/nixpkgs/default.nix \ - bazel build \ - --config=ci \ - --override_repository=io_tweag_rules_haskell=$pwd \ - //:example |