diff options
author | Colomban Wendling <[email protected]> | 2024-09-24 15:58:12 +0200 |
---|---|---|
committer | Luke from DC <[email protected]> | 2024-09-24 19:38:29 +0000 |
commit | 4996c22f78f793bba7d0b90bbbfaac3e395c8dfe (patch) | |
tree | 23db6c0c72a22998b1010096d803f17bf5a1955a | |
parent | 90b39ec6035110936e24b8095b7128e1330806f1 (diff) | |
download | mate-notification-daemon-4996c22f78f793bba7d0b90bbbfaac3e395c8dfe.tar.bz2 mate-notification-daemon-4996c22f78f793bba7d0b90bbbfaac3e395c8dfe.tar.xz |
Try and fix Travis deploy
We had weird errors about the URI gem not being at the right version:
> You have already activated uri 0.13.1, but your Gemfile requires uri
> 0.13.0. Since uri is a default gem, you can either remove your
> dependency on it or try updating to a newer version of bundler that
> supports uri as a default gem. (Gem::LoadError)
This is supposed to fix it for now.
https://travis-ci.community/t/deployments-are-failing-due-to-uri-dependency/14375/4
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 61835f7..dec4f37 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,6 +38,12 @@ notifications: on_success: never on_failure: always +before_deploy: + - yes | gem update --system --force + - gem install bundler + - gem install uri + - gem install logger + deploy: - provider: pages edge: true |