diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2021-02-01 17:35:45 -0500 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2021-02-04 10:54:04 -0500 |
commit | 8e5c6808aca61eb59bcd5a7726facf40cefb9b97 (patch) | |
tree | a7ef104ff892dae1c0ff5c7ad2ab33706f59f216 /docker/scripts | |
parent | 462f05e61da3d38356c01f8c90aa0bc837c3582d (diff) |
Promote vpp-*-centos8-aarch64 jobs to production
- Update lftools install in the docker image builder
to use the same options as global-jjb lf-activate-venv
to pre-populate python cache, otherwise it takes
15+ minutes for lf-activate-venv to complete.
Change-Id: I8c1124faadfbf65228c31418ed02b5967e7fa82c
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'docker/scripts')
-rwxr-xr-x | docker/scripts/dbld_lfit_requirements.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docker/scripts/dbld_lfit_requirements.sh b/docker/scripts/dbld_lfit_requirements.sh index 918a6ff14..88f501764 100755 --- a/docker/scripts/dbld_lfit_requirements.sh +++ b/docker/scripts/dbld_lfit_requirements.sh @@ -1,6 +1,6 @@ #! /bin/bash -# Copyright (c) 2020 Cisco and/or its affiliates. +# Copyright (c) 2021 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -61,4 +61,5 @@ cp $DOCKER_CIMAN_ROOT/global-jjb/jenkins-init-scripts/lf-env.sh /root chmod 644 /root/lf-env.sh # Install lftools for log / artifact upload. -python3 -m pip install lftools +source /root/lf-env.sh +lf-activate-venv lftools |