Skip to content

Commit 0492f6e

Browse files
authored
ansible: install jq on jenkins-workspace (#3397)
The new upload method for Coverity requires parsing a JSON response from the new Coverity API. Refs: #3343
1 parent 17191f8 commit 0492f6e

File tree

1 file changed

+6
-0
lines changed
  • ansible/roles/jenkins-workspace/tasks

1 file changed

+6
-0
lines changed

ansible/roles/jenkins-workspace/tasks/main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,3 +155,9 @@
155155
executable: pip3
156156
state: latest
157157

158+
# Required to submit builds to Coverity.
159+
- name: Install jq
160+
ansible.builtin.package:
161+
name: jq
162+
state: latest
163+
update_cache: yes

0 commit comments

Comments
 (0)