Skip to content

Commit

Permalink
Move jq installation earlier
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyCTHsu committed Nov 12, 2024
1 parent c923f7c commit 48d180e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,10 @@ orbs:
curl --silent --show-error --location --fail --retry 3 --output /usr/local/bin/dockerize $DOCKERIZE_URL
chmod +x /usr/local/bin/dockerize
dockerize --version
# Test agent uses `jq` to check results
- run:
name: Install jq
command: apt update && apt install jq -y
# Wait for containers to start
- docker-wait:
port: 5432
Expand All @@ -307,10 +311,6 @@ orbs:
host: "testagent"
port: 9126
- *step_run_all_tests
- run:
# Test agent uses `jq` to check results
name: Install jq
command: apt update && apt install jq -y
- *step_get_test_agent_trace_check_results
- store_test_results:
path: /tmp/rspec
Expand Down

0 comments on commit 48d180e

Please sign in to comment.