diff options
author | lukefromdc <[email protected]> | 2024-12-08 23:51:43 -0500 |
---|---|---|
committer | lukefromdc <[email protected]> | 2024-12-08 23:51:43 -0500 |
commit | 040020ac3cc43b64dbe079f1b8985d0d879e2d34 (patch) | |
tree | 17d4abc21d3255c9b74836a598565aa41207c875 | |
parent | 964cbd4015512c12072dd16b3dff59c2a1f56018 (diff) | |
download | pluma-040020ac3cc43b64dbe079f1b8985d0d879e2d34.tar.bz2 pluma-040020ac3cc43b64dbe079f1b8985d0d879e2d34.tar.xz |
ci: usual updates for current travis changes
-rw-r--r-- | .travis.yml | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index e7cbc0ed..3d3a2376 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,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: @@ -38,9 +40,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' + - 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 @@ -51,7 +61,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 |