56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{ stdenv, lib, writeText, runCommandCC, bazel }:
|
|
|
|
let
|
|
WORKSPACE = writeText "WORKSPACE" ''
|
|
workspace(name = "our_workspace")
|
|
'';
|
|
|
|
pythonLib = writeText "lib.py" ''
|
|
def foo():
|
|
return 43
|
|
'';
|
|
|
|
pythonBin = writeText "bin.py" ''
|
|
from lib import foo
|
|
|
|
assert foo() == 43
|
|
'';
|
|
|
|
pythonBUILD = writeText "BUILD" ''
|
|
py_library(
|
|
name = "lib",
|
|
srcs = [ "lib.py" ],
|
|
)
|
|
|
|
py_test(
|
|
name = "bin",
|
|
srcs = [ "bin.py" ],
|
|
deps = [ ":lib" ],
|
|
)
|
|
'';
|
|
|
|
runLocal = name: script: runCommandCC name { preferLocalBuild = true; } script;
|
|
|
|
workspaceDir = runLocal "our_workspace" ''
|
|
mkdir $out
|
|
cp ${WORKSPACE} $out/WORKSPACE
|
|
mkdir $out/python
|
|
cp ${pythonLib} $out/python/lib.py
|
|
cp ${pythonBin} $out/python/bin.py
|
|
cp ${pythonBUILD} $out/python/BUILD.bazel
|
|
'';
|
|
|
|
testBazel = runLocal "bazel-test-builtin-rules" ''
|
|
export HOME=$(mktemp -d)
|
|
cp -r ${workspaceDir}/* .
|
|
${bazel}/bin/bazel --output_base=/tmp/bazel-tests/wd\
|
|
test \
|
|
--test_output=errors \
|
|
--host_javabase='@local_jdk//:jdk' \
|
|
//...
|
|
|
|
touch $out
|
|
'';
|
|
|
|
in testBazel
|