Two new CircleCI environments are created: test_ivy_jit and test_ivy_aot. Both run a subset of the tests that have been marked with Bazel tags as being appropriate for that environment. Once all the tests pass, builds are published to the *-builds repo both for the legacy View Engine compiled code as well as for ivy-jit and ivy-aot. PR Close #24309
		
			
				
	
	
		
			39 lines
		
	
	
		
			743 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			743 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| package(default_visibility = ["//visibility:public"])
 | |
| 
 | |
| load("//tools:defaults.bzl", "ng_module", "ng_package")
 | |
| 
 | |
| ng_module(
 | |
|     name = "elements",
 | |
|     srcs = glob(
 | |
|         [
 | |
|             "*.ts",
 | |
|             "src/**/*.ts",
 | |
|         ],
 | |
|     ),
 | |
|     module_name = "@angular/elements",
 | |
|     deps = [
 | |
|         "//packages/core",
 | |
|         "//packages/platform-browser",
 | |
|         "@rxjs",
 | |
|     ],
 | |
| )
 | |
| 
 | |
| ng_package(
 | |
|     name = "npm_package",
 | |
|     srcs = glob([
 | |
|         "**/*.externs.js",
 | |
|         "**/package.json",
 | |
|     ]),
 | |
|     entry_point = "packages/elements/index.js",
 | |
|     packages = [
 | |
|         "//packages/elements/schematics:npm_package",
 | |
|     ],
 | |
|     tags = [
 | |
|         "ivy-jit",
 | |
|         "release-with-framework",
 | |
|     ],
 | |
|     deps = [
 | |
|         ":elements",
 | |
|     ],
 | |
| )
 |