forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(aio): move e2e tests to optional job (angular#20178)
- Loading branch information
1 parent
8b50ed0
commit 63d26a1
Showing
5 changed files
with
37 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -u -e -o pipefail | ||
|
||
# Setup environment | ||
readonly thisDir=$(cd $(dirname $0); pwd) | ||
source ${thisDir}/_travis-fold.sh | ||
|
||
# run in subshell to avoid polluting cwd | ||
( | ||
cd ${PROJECT_ROOT}/aio | ||
# Run e2e tests | ||
travisFoldStart "test.aio.e2e" | ||
yarn setup | ||
yarn e2e | ||
travisFoldEnd "test.aio.e2e" | ||
|
||
) |
This file contains 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
This file contains 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