Skip to content

Commit

Permalink
Bug fix with docker push (dnanexus-archive#47)
Browse files Browse the repository at this point in the history
* Resolve username tag

* Bug fix
  • Loading branch information
Samantha Zarate authored Jan 31, 2019
1 parent 278e13a commit 3919332
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

deploy:
provider: script
script: echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin && docker push dnanexus/parliament2:$TAG
script: echo "$DOCKER_PASSWORD" | docker login --username "$DOCKER_USERNAME" --password-stdin && docker push dnanexus/parliament2:$TAG
on:
branch: master

Expand Down
8 changes: 4 additions & 4 deletions test/set_up_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ mkdir -p /home/dnanexus/in
mkdir -p /home/dnanexus/out

# Download small input BAM and index
wget https://dl.dnanex.us/F/D/6FX1Jz6bp92b9KFv574Fg306kjkGFK1ybKpG35yp/SRR504516_small.bam -o /home/dnanexus/in/small_input.bam
wget https://dl.dnanex.us/F/D/K695ZppQz1v8Pq6yJKKf0426VYyjkk8g32vgv3kZ/SRR504516_small.bam.bai -o /home/dnanexus/in/small_input.bai
wget https://dl.dnanex.us/F/D/6FX1Jz6bp92b9KFv574Fg306kjkGFK1ybKpG35yp/SRR504516_small.bam -O /home/dnanexus/in/small_input.bam
wget https://dl.dnanex.us/F/D/K695ZppQz1v8Pq6yJKKf0426VYyjkk8g32vgv3kZ/SRR504516_small.bam.bai -O /home/dnanexus/in/small_input.bai
# Download reference FASTA and index
wget https://dl.dnanex.us/F/D/bb37ZbXqjFjZY6Fv0G4GzPGjx5QkYJB8XV6kB5K8/hs37d5.fa.gz -o /home/dnanexus/in/ref.fa.gz
wget https://dl.dnanex.us/F/D/p2qJ1z7gb1ZfFJX3XgPP37325kYKVk06zZp1JPbY/hs37d5.fa.fai -o /home/dnanexus/in/ref.fa.fai
wget https://dl.dnanex.us/F/D/bb37ZbXqjFjZY6Fv0G4GzPGjx5QkYJB8XV6kB5K8/hs37d5.fa.gz -O /home/dnanexus/in/ref.fa.gz
wget https://dl.dnanex.us/F/D/p2qJ1z7gb1ZfFJX3XgPP37325kYKVk06zZp1JPbY/hs37d5.fa.fai -O /home/dnanexus/in/ref.fa.fai

0 comments on commit 3919332

Please sign in to comment.