Skip to content

Commit

Permalink
ci(travis): restore before_install
Browse files Browse the repository at this point in the history
  • Loading branch information
friday committed Jan 14, 2023
1 parent fbb2c5f commit 689510d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
if: tag IS present
language: python
services:
- docker
install:
before_install:
- |
if [ ! -z "$encrypted_103700d0e85f_key" ]; then
openssl aes-256-cbc -K $encrypted_103700d0e85f_key -iv $encrypted_103700d0e85f_iv -in scripts/launchpad-secret.key.enc -out scripts/launchpad-secret.key -d
Expand All @@ -11,6 +12,9 @@ install:
fi
- source ./scripts/common.sh
- docker pull $BUILD_IMAGE
install:
# this is to skip default "pip install -r requirements.txt" on travis
- true
before_deploy:
- pip3 install -r requirements.txt # docker image has outdated pip versions
- ./ul build-release $TRAVIS_TAG
Expand Down

0 comments on commit 689510d

Please sign in to comment.