Last active
August 20, 2018 00:22
-
-
Save endobson/d0b0c8adbce88bc50e48d81aad0c4718 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sh_test( | |
name = "foo_test", | |
srcs = ["foo_test.sh"], | |
) | |
test_suite( | |
name = "all_tests", | |
testonly = 0, | |
) | |
filegroup( | |
name = "production_stuff", | |
data = [":all_tests"] | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
exit 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment