Skip to content

Commit

Permalink
ci: fix travis build failures caused by recent travis changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukefromdc authored and cwendling committed Dec 5, 2024
1 parent 8046643 commit 606c145
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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' # 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
Expand All @@ -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
Expand Down

0 comments on commit 606c145

Please sign in to comment.