Skip to content

Commit 06e4d7f

Browse files
committed
do we still need to check for ssh keys to add to known hosts? I feel like circle would do this for us
1 parent e0b5991 commit 06e4d7f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.circleci/src/pipeline/@pipeline.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ commands:
118118
name: Set environment variable to determine whether or not to persist artifacts
119119
command: |
120120
echo "Setting SHOULD_PERSIST_ARTIFACTS variable"
121-
echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "ryanm/fix/rename-exclude-from-ai" ]]; then
121+
echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "chore/fix_builds" ]]; then
122122
export SHOULD_PERSIST_ARTIFACTS=true
123123
fi' >> "$BASH_ENV"
124124
# You must run `setup_should_persist_artifacts` command and be using bash before running this command
@@ -1473,7 +1473,7 @@ jobs:
14731473
default: false
14741474
resource_class: << parameters.resource_class >>
14751475
steps:
1476-
- update_known_hosts
1476+
# - update_known_hosts
14771477
- checkout
14781478
- install-required-node
14791479
- verify-build-setup:
@@ -1583,7 +1583,7 @@ jobs:
15831583
echo "skipping for contributor PRs since we don't record to the cloud"
15841584
circleci-agent step halt
15851585
fi
1586-
- update_known_hosts
1586+
# - update_known_hosts
15871587
- run:
15881588
name: checkout
15891589
command: git clone -b "$CIRCLE_BRANCH" "$CIRCLE_REPOSITORY_URL" --depth 1
@@ -1795,7 +1795,7 @@ jobs:
17951795
GITHUB_TOKEN: $GH_TOKEN
17961796
steps:
17971797
- restore_cached_workspace
1798-
- update_known_hosts
1798+
# - update_known_hosts
17991799
- run: yarn test-npm-package-release-script
18001800
- run: node ./scripts/semantic-commits/validate-binary-changelog.js
18011801
- store_artifacts:

.circleci/src/pipeline/workflows/@main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ linux-x64:
44
- equal: [ develop, << pipeline.git.branch >> ]
55
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
66
- equal: [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
7-
- equal: [ 'ryanm/fix/rename-exclude-from-ai', << pipeline.git.branch >> ]
7+
- equal: [ 'chore/fix_builds', << pipeline.git.branch >> ]
88
- matches:
99
pattern: /^release\/\d+\.\d+\.\d+$/
1010
value: << pipeline.git.branch >>

0 commit comments

Comments
 (0)