From c983ba07f93f78ab06180d54a7f34e674027f049 Mon Sep 17 00:00:00 2001 From: Pavan Kumar Sunkara Date: Sat, 18 Aug 2018 04:37:25 +0200 Subject: [PATCH] Removed obsolete travis references --- docs/.travis.yml | 21 --------------- docs/package.json | 2 +- docs/scripts/travis/after_success.sh | 14 ---------- docs/scripts/travis/before_install.sh | 38 --------------------------- scripts/travis/after_success.sh | 17 ------------ scripts/travis/before_install.sh | 38 --------------------------- 6 files changed, 1 insertion(+), 129 deletions(-) delete mode 100644 docs/.travis.yml delete mode 100755 docs/scripts/travis/after_success.sh delete mode 100755 docs/scripts/travis/before_install.sh delete mode 100755 scripts/travis/after_success.sh delete mode 100755 scripts/travis/before_install.sh diff --git a/docs/.travis.yml b/docs/.travis.yml deleted file mode 100644 index 0cb614315fb..00000000000 --- a/docs/.travis.yml +++ /dev/null @@ -1,21 +0,0 @@ -language: node_js -branches: - except: - - master -cache: - directories: - - node_modules - - ".cache" -notifications: - email: false -node_js: -- node -before_install: "./scripts/travis/before_install.sh" -after_success: "./scripts/travis/after_success.sh" -script: -- npm run lint -git: - depth: 1 -env: - global: - - secure: yNNjO4HvIcBH2r+EpWr29TQZzUJoQCC7MlxDtWW5XCsiL7lwnAxRk9DJ1edjYyd2lt4UWVyiQYD7708YMq7sR9TQWN195kcVnd1k5JzNBvePK9VjrmX2e2gRsbSQmWYQXFuUvbEbBmZUPhWbgaTzDzSdzsoFpTqJg3Q328S2GleixtPLBly5SC59Zar9tGw7OyVmPRN9GdKbVQfPQcmHDY+fHKzAqBaenlL/dC6UR9N+w5oWr3KFH/smrVzbDEonoKaZqvj02LnHVctGL6XCopoNbm7ldf/A6qKS/9D/MrLiLP3O3umCPhnGH8L8bNw7I6pdIKbroISUd+v5FqoCLN1iLO5wDY73gKUdwYUAt37KEhFUJPDwr/YYxRP0fZHIF0lI44w0RgN7N27ISwu9dw6Zq6a28+UcBRyemsvfXodBO9jiAW8R0pQhqWZ9yc2vZfFVfRh5SbHBLqIc0uHcqAtnkx8XU72bDDbqmA0dCA+LwAPX3doaaP37C5BzO+khGODpG+4R0nSsuTdPB6+jbBuS84V9YUAAl95hhMlYA9hvI3GdDjPkahuaYdUrYmqSh3v2XIhEA+D6BjXaGLYwcFpZzLB8pzZbRZVR4RdmuGF1J+ozxZNiKPPqcmK7XFlGWJ2b2+fFw3ZuHU6grDdCe1zpLYzrx1Om6QBUir83oGM= diff --git a/docs/package.json b/docs/package.json index 121343fb9fe..d0ac1388e16 100644 --- a/docs/package.json +++ b/docs/package.json @@ -9,7 +9,7 @@ "license": "MIT", "main": "n/a", "scripts": { - "build": "gatsby build && cp static/**/* .travis.yml ./public", + "build": "gatsby build && cp static/**/* ./public", "build-storybook": "build-storybook", "deploy:ci": "gh-pages -t -r https://${GH_TOKEN}@github.com/storybooks/storybook.git -d public -o origin -b gh-pages", "deploy:manual": "gh-pages -t -r git@github.com:storybooks/storybook.git -d public -o origin -b gh-pages", diff --git a/docs/scripts/travis/after_success.sh b/docs/scripts/travis/after_success.sh deleted file mode 100755 index 23566802e35..00000000000 --- a/docs/scripts/travis/after_success.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash -set -e - -if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then - echo "We are in a pull request, not releasing" - exit 0 -fi - -if [[ $TRAVIS_BRANCH == 'source' ]]; then - npm run build - git config --global user.email "nobody@nobody.org" - git config --global user.name "Travis CI" - npm run deploy-travis -fi diff --git a/docs/scripts/travis/before_install.sh b/docs/scripts/travis/before_install.sh deleted file mode 100755 index a300c387cc5..00000000000 --- a/docs/scripts/travis/before_install.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -set -e -# Note: do not do set -x or the passwords will leak! - -if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then - echo "We are in a pull request, not setting up release" - exit 0 -fi - -if [[ $TRAVIS_BRANCH == 'master' ]]; then - # rm -rf .git - # git init - # git clean -dfx - # git remote add origin https://github.com/atlassian/lerna-semantic-release.git - # git fetch origin - # git clone https://github.com/$TRAVIS_REPO_SLUG.git $TRAVIS_REPO_SLUG - # git checkout $TRAVIS_BRANCH - # - # git config credential.helper store - # echo "https://${RELEASE_GH_USERNAME}:${RELEASE_GH_TOKEN}@github.com/atlassian/lerna-semantic-release.git" > ~/.git-credentials - # - # npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN -q - # npm prune - # - # git config --global user.email "design-platform@atlassian.com" - # git config --global user.name "Design Platform" - # git config --global push.default simple - # - # git fetch --tags - # git branch -u origin/$TRAVIS_BRANCH - # git fsck --full #debug - # echo "npm whoami" - # npm whoami #debug - # echo "git config --list" - # git config --list #debug - echo "We are on master" - exit 0 -fi diff --git a/scripts/travis/after_success.sh b/scripts/travis/after_success.sh deleted file mode 100755 index 0907fe7cb3f..00000000000 --- a/scripts/travis/after_success.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -set -e - -if [ "$TRAVIS_PULL_REQUEST" != 'false' ]; then - echo "We are in a pull request, not releasing" - exit 0 -fi - -if [[ $TRAVIS_BRANCH == 'master' ]]; then - # setup git user - git config --global user.email "nobody@nobody.org" - git config --global user.name "Travis CI" - - # deploy documentation to github-pages - npm run docs:build - npm run docs:deploy:ci -fi diff --git a/scripts/travis/before_install.sh b/scripts/travis/before_install.sh deleted file mode 100755 index a300c387cc5..00000000000 --- a/scripts/travis/before_install.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -set -e -# Note: do not do set -x or the passwords will leak! - -if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then - echo "We are in a pull request, not setting up release" - exit 0 -fi - -if [[ $TRAVIS_BRANCH == 'master' ]]; then - # rm -rf .git - # git init - # git clean -dfx - # git remote add origin https://github.com/atlassian/lerna-semantic-release.git - # git fetch origin - # git clone https://github.com/$TRAVIS_REPO_SLUG.git $TRAVIS_REPO_SLUG - # git checkout $TRAVIS_BRANCH - # - # git config credential.helper store - # echo "https://${RELEASE_GH_USERNAME}:${RELEASE_GH_TOKEN}@github.com/atlassian/lerna-semantic-release.git" > ~/.git-credentials - # - # npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN -q - # npm prune - # - # git config --global user.email "design-platform@atlassian.com" - # git config --global user.name "Design Platform" - # git config --global push.default simple - # - # git fetch --tags - # git branch -u origin/$TRAVIS_BRANCH - # git fsck --full #debug - # echo "npm whoami" - # npm whoami #debug - # echo "git config --list" - # git config --list #debug - echo "We are on master" - exit 0 -fi