Skip to content

Commit fac8615

Browse files
Make markTest not run on test branches
1 parent e08c005 commit fac8615

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.circleci/config_continue.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,16 @@ jobs:
1616
- run: npm run build-check
1717
- run: npm run size
1818
- run: npm run check-circular-dependencies
19-
- run: (cd .circleci/ && ./markTesting.sh)
19+
# - run: (cd .circleci/ && ./markTesting.sh)
20+
- run:
21+
name: Mark Testing (Conditional)
22+
command: |
23+
if [ "$CIRCLE_BRANCH" != "ci/use-circle-ci-tests-for-partial-rerun-support" ]; then
24+
echo "Running ./markTesting.sh as branch is $CIRCLE_BRANCH";
25+
(cd .circleci/ && ./markTesting.sh);
26+
else
27+
echo "Skipping ./markTesting.sh for branch $CIRCLE_BRANCH";
28+
fi
2029
- persist_to_workspace:
2130
root: / # relative path to our working directory
2231
paths:

0 commit comments

Comments
 (0)