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 a8d1a4a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .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,7 +12,10 @@ install:
fi
- source ./scripts/common.sh
- docker pull $BUILD_IMAGE
before_deploy:
install:
# this is to skip default "pip install -r requirements.txt" on travis
- true
script:
- pip3 install -r requirements.txt # docker image has outdated pip versions
- ./ul build-release $TRAVIS_TAG
deploy:
Expand Down

0 comments on commit a8d1a4a

Please sign in to comment.