diff options
author | lukefromdc <[email protected]> | 2024-12-02 16:18:03 -0500 |
---|---|---|
committer | Luke from DC <[email protected]> | 2024-12-02 21:59:04 +0000 |
commit | fb1d374e99fa52c8ec23116be66c03925214d036 (patch) | |
tree | 8031011eee6960f1f9f4a86fbe078c9aad24427d | |
parent | 33f05a252cd2f8f39eaa0fb6df9210c47995ac0e (diff) | |
download | atril-fb1d374e99fa52c8ec23116be66c03925214d036.tar.bz2 atril-fb1d374e99fa52c8ec23116be66c03925214d036.tar.xz |
ci: fix travis build failures caused by recent travis changes
-rw-r--r-- | .travis.yml | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 2d994e34..ea4fbcfe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,9 @@ before_install: - chmod +x docker-build gen-index install: - - pip3 install PyGithub + - sudo apt-get install -y python3-pip python3-setuptools + - sudo pip3 install --upgrade pip + - sudo pip3 install PyGithub - ./docker-build --name ${DISTRO} --config .build.yml --install script: @@ -37,9 +39,17 @@ notifications: on_success: never on_failure: always +before_deploy: + - yes | gem update --system --force + - gem install bundler + - gem install faraday-net_http -v '3.3.0' # Avoid faraday version problem + - gem install uri + - gem install logger + deploy: - provider: pages - edge: true + edge: + branch: v2.0.5 token: $GITHUB_TOKEN keep_history: false committer_from_gh: true @@ -50,7 +60,8 @@ deploy: all_branches: true condition: ${DISTRO} =~ ^fedora.*$ - provider: script - edge: true + edge: + branch: v2.0.5 script: ./docker-build --verbose --config .build.yml --release github on: tags: true |