$(location) is not recommended in the bazel docs as depending on context it will either return the value of $(execpath) or $(rootpath). rules_nodejs now supports $(rootpath) and $(execpath) in templated_args of nodejs_binary. PR Close #36308
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| load("@build_bazel_rules_nodejs//:index.bzl", "nodejs_binary")
 | |
| 
 | |
| package(default_visibility = ["//visibility:public"])
 | |
| 
 | |
| sh_binary(
 | |
|     name = "sauce_service_setup",
 | |
|     srcs = ["sauce-service.sh"],
 | |
|     args = ["setup"],
 | |
|     data = ["@npm//sauce-connect"],
 | |
| )
 | |
| 
 | |
| sh_binary(
 | |
|     name = "sauce_service_start",
 | |
|     srcs = ["sauce-service.sh"],
 | |
|     args = ["start"],
 | |
|     data = ["@npm//sauce-connect"],
 | |
| )
 | |
| 
 | |
| sh_binary(
 | |
|     name = "sauce_service_start_ready_wait",
 | |
|     srcs = ["sauce-service.sh"],
 | |
|     args = ["start-ready-wait"],
 | |
|     data = ["@npm//sauce-connect"],
 | |
| )
 | |
| 
 | |
| sh_binary(
 | |
|     name = "sauce_service_ready_wait",
 | |
|     srcs = ["sauce-service.sh"],
 | |
|     args = ["ready-wait"],
 | |
|     data = ["@npm//sauce-connect"],
 | |
| )
 | |
| 
 | |
| sh_binary(
 | |
|     name = "sauce_service_stop",
 | |
|     srcs = ["sauce-service.sh"],
 | |
|     args = ["stop"],
 | |
|     data = ["@npm//sauce-connect"],
 | |
| )
 | |
| 
 | |
| sh_binary(
 | |
|     name = "sauce_service_tail",
 | |
|     srcs = ["sauce-service.sh"],
 | |
|     args = ["tail"],
 | |
|     data = ["@npm//sauce-connect"],
 | |
| )
 | |
| 
 | |
| sh_binary(
 | |
|     name = "sauce_service_log",
 | |
|     srcs = ["sauce-service.sh"],
 | |
|     args = ["log"],
 | |
|     data = ["@npm//sauce-connect"],
 | |
| )
 | |
| 
 | |
| nodejs_binary(
 | |
|     name = "karma-saucelabs",
 | |
|     data = [
 | |
|         "sauce-service.sh",
 | |
|         "@npm//karma",
 | |
|         "@npm//sauce-connect",
 | |
|         "@npm//shelljs",
 | |
|     ],
 | |
|     entry_point = "karma-saucelabs.js",
 | |
|     templated_args = ["$(rootpath sauce-service.sh)"],
 | |
| )
 |