diff options
author | lukefromdc <[email protected]> | 2024-11-22 03:41:23 -0500 |
---|---|---|
committer | lukefromdc <[email protected]> | 2024-11-22 03:41:23 -0500 |
commit | c52b0a7f787bf29bfa397eec85713121c90fc8f0 (patch) | |
tree | 81f4879ebff281e5eeaec163143c2b572470531a | |
parent | e385de1a3843f8913b141c1f806ac950d6086e3d (diff) | |
download | mate-applets-c52b0a7f787bf29bfa397eec85713121c90fc8f0.tar.bz2 mate-applets-c52b0a7f787bf29bfa397eec85713121c90fc8f0.tar.xz |
CI: sudo was not used in prior attempt
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 23d7d8ed..17c1c46c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,8 +20,15 @@ before_install: - chmod +x docker-build gen-index install: - - pip3 install PyGithub - - ./docker-build --name ${DISTRO} --config .build.yml --install +install: + + - sudo apt-get install -y python3-pip python3-setuptools + + - sudo pip3 install --upgrade pip + + - sudo pip install PyGithub + + - ./docker-build --name ${DISTRO} --config .travis.yml --install script: - ./docker-build --name ${DISTRO} --verbose --config .build.yml --build scripts |