File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ default_environment: &default_environment
3030 CIRCLE_ARTIFACTS : /tmp/circleci-artifacts
3131 GIT_PAGER : cat
3232
33+ orbs :
34+ jq : circleci/jq@2.2.0
35+
3336executors :
3437 golang :
3538 docker :
@@ -131,6 +134,11 @@ jobs:
131134 steps :
132135 - run : sudo apt update
133136 - run : sudo apt install socat net-tools
137+ - run : sudo apt --purge remove jq
138+ - jq/install :
139+ version : jq-1.6
140+ install-dir : /usr/local/bin
141+ override : true
134142 - checkout
135143
136144 - run :
Original file line number Diff line number Diff line change @@ -129,8 +129,9 @@ test_config_cmd() {
129129 # Dynamic keys with dot in their names
130130 test_config_cmd_set " --json" " Gateway.PublicGateways[\" some.example.com\" ].UseSubdomains" " true"
131131 test_expect_success " 'ipfs config show' after Foo[\" bar.buzz\" ] returns a valid JSON" '
132- ipfs config show | jq -e > /dev/null 2>&1
132+ ipfs config show | jq -e
133133 '
134+ # TODO: ipfs config show | jq -e > /dev/null 2>&1
134135 test_expect_success " 'ipfs config' after Foo[\" bar.buzz\" ] shows updated value" '
135136 ipfs config Gateway.PublicGateways[\"some.example.com\"].UseSubdomains > bool_out &&
136137 grep true bool_out
You can’t perform that action at this time.
0 commit comments