build: rename the ivy compile mode 'local' to 'aot' (#26686)

PR Close #26686
This commit is contained in:
Igor Minar
2018-10-23 09:54:12 -07:00
committed by Alex Rickabaugh
parent a012ffbd5b
commit cace4dea64
35 changed files with 59 additions and 63 deletions

View File

@ -61,7 +61,4 @@ buildTargetPackages "$BAZEL_TARGETS" "dist/packages-dist" "legacy" "Production"
|| "${CI_REPO_NAME-}" != "angular"
]] && exit 0
# A clean is needed since build artifacts from previous build can break the following build
bazel clean
buildTargetPackages "$BAZEL_TARGETS" "dist/packages-dist-ivy-local" "local" "Ivy AOT"
buildTargetPackages "$BAZEL_TARGETS" "dist/packages-dist-ivy-aot" "aot" "Ivy AOT"

View File

@ -123,8 +123,7 @@ function publishAllBuilds() {
local latestTag=`getLatestTag`
publishPackages $GIT_SCHEME dist/packages-dist $CUR_BRANCH "${latestTag}+${shortSha}"
publishPackages $GIT_SCHEME dist/packages-dist-ivy-jit "${CUR_BRANCH}-ivy-jit" "${latestTag}-ivy-jit+${shortSha}"
publishPackages $GIT_SCHEME dist/packages-dist-ivy-local "${CUR_BRANCH}-ivy-aot" "${latestTag}-ivy-aot+${shortSha}"
publishPackages $GIT_SCHEME dist/packages-dist-ivy-aot "${CUR_BRANCH}-ivy-aot" "${latestTag}-ivy-aot+${shortSha}"
}
# See docs/DEVELOPER.md for help