-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove job to install jq #7309
remove job to install jq #7309
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Circle config is generated from .circleci/template.yml
, so the change also needs to be done there
4559bd3
to
8918082
Compare
@magik6k updated template.yaml and pushed |
jq is already installed now in either a newer version of CircleCI's MacOS VMs or in a previous CI step. I ran a failing macos job with ssh enabled, and inspected '/usr/local/bin' and found found the following output lrwxr-xr-x 1 distiller admin 23 Jun 22 14:50 jq -> ../Cellar/jq/1.6/bin/jq the existing symlink causes the 'Install jq' job to fail. removing this job should resolve the issue
8918082
to
4d9b852
Compare
sorry previous comment jumped the gun. change is there now |
Codecov Report
@@ Coverage Diff @@
## master #7309 +/- ##
==========================================
+ Coverage 39.14% 39.21% +0.07%
==========================================
Files 614 614
Lines 64989 64989
==========================================
+ Hits 25437 25484 +47
+ Misses 35145 35104 -41
+ Partials 4407 4401 -6
Continue to review full report at Codecov.
|
thanks @ognots ! backported to release/v1.11.3 |
jq is already installed now in either a newer version of CircleCI's MacOS VMs or in a previous CI step.
I ran a failing macos job with ssh enabled, and inspected '/usr/local/bin' and found found the following output
lrwxr-xr-x 1 distiller admin 23 Jun 22 14:50 jq -> ../Cellar/jq/1.6/bin/jq
the existing symlink causes the 'Install jq' job to fail.
removing this job should resolve the issue