Remove travis configuration

This commit is contained in:
Josh Kunz 2022-01-06 22:22:23 -08:00
parent cc97e21cce
commit 0750a472bf
2 changed files with 0 additions and 25 deletions

View File

@ -1,15 +0,0 @@
language: minimal
env:
- IMAGE_NAME=jkz0/qemu
services:
- docker
script: docker build -t $IMAGE_NAME .
deploy:
provider: script
script: .travis/deploy-docker-hub
on:
tags: true

View File

@ -1,10 +0,0 @@
#!/usr/bin/env bash
set -x
set -e
echo $DOCKER_HUB_PASSWORD | docker login -u $DOCKER_HUB_USER --password-stdin
docker tag $IMAGE_NAME $IMAGE_NAME:latest
docker tag $IMAGE_NAME $IMAGE_NAME:$TRAVIS_TAG
docker push $IMAGE_NAME:latest
docker push $IMAGE_NAME:$TRAVIS_TAG