Skip to content

Commit

Permalink
fix(ci): postpone lldb install until after unattended-upgrades (#12329)
Browse files Browse the repository at this point in the history
Signed-off-by: Lars Kreutzer <lars.kreutzer@tngtech.com>
  • Loading branch information
LKreutzer authored and ardzoht committed Mar 29, 2022
1 parent 9b6d26f commit 007efa6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions lte/gateway/deploy/roles/dev_common/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,15 +195,6 @@
- python3-aioeventlet
retries: 5

- name: Install LLDB debugger
# TODO: Make this preburn
apt:
pkg: lldb
state: present
update_cache: no
retries: 5
when: full_provision

# /etc/environment doesn't expand variables, so if we want to modify the path,
# we need to do it in profile.d
- name: Create the env script
Expand Down Expand Up @@ -468,3 +459,12 @@
purge: yes
pkg:
- unattended-upgrades

- name: Install LLDB debugger
# TODO: Make this preburn
apt:
pkg: lldb
state: present
update_cache: no
retries: 5
when: full_provision

0 comments on commit 007efa6

Please sign in to comment.