From d494e906b66d09d20f6bb1b5507ba997b6e5b392 Mon Sep 17 00:00:00 2001 From: Anders Sparrevohn Date: Tue, 9 Aug 2022 12:38:33 +0200 Subject: [PATCH] Remove travis CI leftovers --- .travis.yml | 30 ------------------------------ publish-docker-image.sh | 5 ----- 2 files changed, 35 deletions(-) delete mode 100644 .travis.yml delete mode 100755 publish-docker-image.sh diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index ede947cdf..000000000 --- a/.travis.yml +++ /dev/null @@ -1,30 +0,0 @@ -language: node_js -git: - depth: false -node_js: - - 16 - -services: - - docker - -cache: yarn - -if: (type = pull_request) OR (tag IS present) - -jobs: - include: - - stage: Install dependencies - if: type = pull_request - script: yarn --frozen-lockfile - - stage: Check formatting - if: type = pull_request - script: yarn format:check - - stage: Execute tests - if: type = pull_request - script: yarn test - - stage: Build application - if: type = pull_request - script: yarn build:all - - stage: Build and publish docker image - if: tag IS present - script: ./publish-docker-image.sh diff --git a/publish-docker-image.sh b/publish-docker-image.sh deleted file mode 100755 index b554f6714..000000000 --- a/publish-docker-image.sh +++ /dev/null @@ -1,5 +0,0 @@ -set -xe -echo "$DOCKER_HUB_ACCESS_TOKEN" | docker login -u "$DOCKER_HUB_USERNAME" --password-stdin - -docker build -t ghostfolio/ghostfolio:$TRAVIS_TAG -t ghostfolio/ghostfolio:latest . -docker push ghostfolio/ghostfolio --all-tags