diff options
author | 2019-11-27 11:20:41 +0100 | |
---|---|---|
committer | 2019-11-27 11:25:48 +0100 | |
commit | a9216e7d1ede61830386b356046507cc4b0e3634 (patch) | |
tree | 0f70e941e20ca17716bcc8c9822a6e690bd71105 | |
parent | 060b3380f8884507c86b054da009e332b737d118 (diff) |
Run update package index before installing pkg in Circle CI.
Change-Id: Id160a5bc68c2201db124773bf6eee8b6bb4cb7fc
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit b209efd0fa4233ba58e5d21175c567c8b0946dde)
-rw-r--r-- | .circleci/config.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 0e8dc396..2bcd67f9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: - checkout - run: name: Install dependendencies - command: sudo apt-get install python2.7-dev + command: sudo apt-get update && sudo apt-get install python2.7-dev - run: name: Run tox command: sudo pip install tox && tox |