From 2662c0cd079e52dfc9517d2f8c35284fe4b826f2 Mon Sep 17 00:00:00 2001 From: AkiraFukushima Date: Fri, 19 Apr 2019 13:44:59 +0900 Subject: [PATCH] Remove unused setting files --- .travis.yml | 43 ------------------------------------------- appveyor.yml | 33 --------------------------------- 2 files changed, 76 deletions(-) delete mode 100644 .travis.yml delete mode 100644 appveyor.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 11085506..00000000 --- a/.travis.yml +++ /dev/null @@ -1,43 +0,0 @@ -# Commented sections below can be used to run tests on the CI server -# https://simulatedgreg.gitbooks.io/electron-vue/content/en/testing.html#on-the-subject-of-ci-testing -osx_image: xcode8.3 -sudo: required -dist: trusty -language: c -matrix: - include: - - os: osx - - os: linux - env: CC=clang CXX=clang++ npm_config_clang=1 - compiler: clang -cache: - directories: - - node_modules - - "$HOME/.electron" - - "$HOME/.cache" -addons: - apt: - packages: - - libgnome-keyring-dev - - icnsutils - #- xvfb -before_install: -- mkdir -p /tmp/git-lfs && curl -L https://github.com/github/git-lfs/releases/download/v1.2.1/git-lfs-$([ - "$TRAVIS_OS_NAME" == "linux" ] && echo "linux" || echo "darwin")-amd64-1.2.1.tar.gz - | tar -xz -C /tmp/git-lfs --strip-components 1 && /tmp/git-lfs/git-lfs pull -- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick xz-utils; fi -install: -#- export DISPLAY=':99.0' -#- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & -- nvm install 7 -- curl -o- -L https://yarnpkg.com/install.sh | bash -- source ~/.bashrc -- npm install -g xvfb-maybe -- yarn -script: -#- xvfb-maybe node_modules/.bin/karma start test/unit/karma.conf.js -#- yarn run pack && xvfb-maybe node_modules/.bin/mocha test/e2e -- yarn run build -branches: - only: - - master diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 0bff3e06..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,33 +0,0 @@ -# Commented sections below can be used to run tests on the CI server -# https://simulatedgreg.gitbooks.io/electron-vue/content/en/testing.html#on-the-subject-of-ci-testing -version: 0.1.{build} - -branches: - only: - - master - -image: Visual Studio 2017 -platform: - - x64 - -cache: - - node_modules - - '%APPDATA%\npm-cache' - - '%USERPROFILE%\.electron' - - '%USERPROFILE%\AppData\Local\Yarn\cache' - -init: - - git config --global core.autocrlf input - -install: - - ps: Install-Product node 8 x64 - - choco install yarn --ignore-dependencies - - git reset --hard HEAD - - yarn - - node --version - -build_script: - #- yarn test - - yarn build - -test: off