Skip to content

Commit bb5ddee

Browse files
IgorMinarkara
authored andcommitted
ci: remove build steps that are no longer needed (angular#27937)
the metadata build seems to be needed only by the offline compiler tests which is currently disabled PR Close angular#27937
1 parent 04ca3bc commit bb5ddee

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

scripts/ci/build.sh

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,7 @@ readonly thisDir=$(cd $(dirname $0); pwd)
77
source ${thisDir}/_travis-fold.sh
88

99

10-
# If the previous commands in the `script` section of .travis.yaml failed, then abort.
11-
# The variable is not set in early stages of the build, so we default to 0 there.
12-
# https://docs.travis-ci.com/user/environment-variables/
13-
if [[ ${TRAVIS_TEST_RESULT=0} == 1 ]]; then
14-
exit 1;
15-
fi
16-
17-
# No build needed for bazel or aio docs tests
18-
if [[ ${CI_MODE:-} == "bazel" ]]; then
19-
exit 0;
20-
fi
21-
22-
travisFoldStart "tsc tools"
23-
# TODO: I think these three can be deleted... but I'm not sure
24-
# let's delete them one at a time and test on CI
25-
$(npm bin)/tsc -p tools
26-
$(npm bin)/tsc -p packages/compiler/tsconfig-tools.json
27-
$(npm bin)/tsc -p packages/compiler-cli/tsconfig-tools.json
28-
travisFoldEnd "tsc tools"
29-
30-
3110
travisFoldStart "tsc all"
32-
node dist/tools/@angular/compiler-cli/src/main -p packages/tsconfig-metadata.json
3311
$(npm bin)/tsc -p packages
3412
$(npm bin)/tsc -p packages/examples
3513
$(npm bin)/tsc -p modules

0 commit comments

Comments
 (0)