@@ -29,7 +29,7 @@ mainBuildFilters: &mainBuildFilters
29
29
only :
30
30
- develop
31
31
- 10.0-release
32
- - unify-1449-beta-slug-length
32
+ - remove-unused-scripts
33
33
34
34
# usually we don't build Mac app - it takes a long time
35
35
# but sometimes we want to really confirm we are doing the right thing
@@ -38,7 +38,7 @@ macWorkflowFilters: &mac-workflow-filters
38
38
when :
39
39
or :
40
40
- equal : [ develop, << pipeline.git.branch >> ]
41
- - equal : [ unify-1449-beta-slug-length , << pipeline.git.branch >> ]
41
+ - equal : [ remove-unused-scripts , << pipeline.git.branch >> ]
42
42
- matches :
43
43
pattern : " -release$"
44
44
value : << pipeline.git.branch >>
@@ -48,7 +48,7 @@ windowsWorkflowFilters: &windows-workflow-filters
48
48
or :
49
49
- equal : [ master, << pipeline.git.branch >> ]
50
50
- equal : [ develop, << pipeline.git.branch >> ]
51
- - equal : [ unify-1449-beta-slug-length , << pipeline.git.branch >> ]
51
+ - equal : [ remove-unused-scripts , << pipeline.git.branch >> ]
52
52
- matches :
53
53
pattern : " -release$"
54
54
value : << pipeline.git.branch >>
@@ -217,7 +217,7 @@ commands:
217
217
- v{{ .Environment.CACHE_VERSION }}-{{ checksum "platform_key" }}-state-of-system-tests-projects-node-modules-cache-{{ checksum "system_tests_cache_key" }}
218
218
- run :
219
219
name : Send root honeycomb event for this CI build
220
- command : cd system-tests/scripts && node ./send-root-honecomb -event.js
220
+ command : cd system-tests/scripts && node ./send-root-honeycomb -event.js
221
221
- run :
222
222
name : Bail if specific cache exists
223
223
command : |
@@ -1081,24 +1081,18 @@ jobs:
1081
1081
parallelism : 1
1082
1082
steps :
1083
1083
- restore_cached_workspace
1084
- # make sure mocha runs
1085
- - run : yarn test-mocha
1086
1084
- when :
1087
1085
condition :
1088
1086
# several snapshots fails for windows due to paths.
1089
1087
# until these are fixed, run the tests that are working.
1090
1088
equal : [ *windows-executor, << parameters.executor >> ]
1091
1089
steps :
1092
1090
- run : yarn test-scripts scripts/**/*spec.js
1093
- # make sure our snapshots are compared correctly
1094
- - run : yarn test-mocha-snapshot
1095
1091
- unless :
1096
1092
condition :
1097
1093
equal : [ *windows-executor, << parameters.executor >> ]
1098
1094
steps :
1099
1095
- run : yarn test-scripts
1100
- # make sure our snapshots are compared correctly
1101
- - run : yarn test-mocha-snapshot
1102
1096
# make sure packages with TypeScript can be transpiled to JS
1103
1097
- run : yarn lerna run build-prod --stream
1104
1098
# run unit tests from each individual package
@@ -1657,7 +1651,7 @@ jobs:
1657
1651
- run :
1658
1652
name : Check current branch to persist artifacts
1659
1653
command : |
1660
- if [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "unify-1449-beta-slug-length " ]]; then
1654
+ if [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "remove-unused-scripts " ]]; then
1661
1655
echo "Not uploading artifacts or posting install comment for this branch."
1662
1656
circleci-agent step halt
1663
1657
fi
0 commit comments