chore(ci): remove circle and appveyor ci (#3226)

This commit is contained in:
Shinigami 2021-05-04 06:15:32 +02:00 committed by GitHub
parent 77a882a385
commit 86ab1e2e51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 73 deletions

View File

@ -1,46 +0,0 @@
version: 2
defaults: &defaults
docker:
- image: vuejs/ci
environment:
# 4 GiB of RAM on the default medium class, so we set the max to 3.5 GiB
# https://circleci.com/docs/2.0/configuration-reference/#docker-executor
NODE_OPTIONS: --max-old-space-size=3584
step_restore_cache: &restore_cache
restore_cache:
keys:
- v1-dependencies-{{ checksum "yarn.lock" }}-1
- v1-dependencies-
step_install_deps: &install_deps
run:
name: Install Dependencies
command: yarn --frozen-lockfile
step_save_cache: &save_cache
save_cache:
paths:
- node_modules
- ~/.cache/yarn
key: v1-dependencies-{{ checksum "yarn.lock" }}-1
jobs:
test:
<<: *defaults
steps:
- checkout
- *restore_cache
- *install_deps
- *save_cache
- run: cd packages/vite && yarn build
- run: cd packages/plugin-vue && yarn build
- run: yarn test-serve --runInBand
- run: yarn test-build --runInBand
workflows:
version: 2
ci:
jobs:
- test

View File

@ -6,9 +6,8 @@
<br/>
<p align="center">
<a href="https://npmjs.com/package/vite"><img src="https://img.shields.io/npm/v/vite.svg" alt="npm package"></a>
<a href="https://nodejs.org/en/about/releases/"><img src="https://img.shields.io/node/v/vite.svg" alt="node compatility"></a>
<a href="https://app.circleci.com/pipelines/github/vitejs/vite?branch=main"><img src="https://circleci.com/gh/vitejs/vite/tree/main.svg?style=shield" alt="unix build status"></a>
<a href="https://ci.appveyor.com/project/yyx990803/vite/branch/main"><img src="https://ci.appveyor.com/api/projects/status/0q4j8062olbcs71l/branch/main?svg=true" alt="windows build status"></a>
<a href="https://nodejs.org/en/about/releases/"><img src="https://img.shields.io/node/v/vite.svg" alt="node compatibility"></a>
<a href="https://github.com/vitejs/vite/actions/workflows/ci.yml"><img src="https://github.com/vitejs/vite/actions/workflows/ci.yml/badge.svg?branch=main" alt="build status"></a>
<a href="https://chat.vitejs.dev"><img src="https://img.shields.io/badge/chat-discord-blue?style=flat&logo=discord" alt="discord chat"></a>
</p>
<br/>
@ -61,9 +60,5 @@ MIT
[npm-url]: https://npmjs.com/package/vite
[node-img]: https://img.shields.io/node/v/vite.svg
[node-url]: https://nodejs.org/en/about/releases/
[unix-ci-img]: https://circleci.com/gh/vitejs/vite/tree/main.svg?style=shield
[unix-ci-url]: https://app.circleci.com/pipelines/github/vitejs/vite?branch=main
[windows-ci-img]: https://ci.appveyor.com/api/projects/status/0q4j8062olbcs71l/branch/main?svg=true
[windows-ci-url]: https://ci.appveyor.com/project/yyx990803/vite/branch/main
[discord-img]: https://img.shields.io/badge/chat-discord-blue?style=flat&logo=discord
[discord-url]: https://chat.vitejs.dev

View File

@ -1,20 +0,0 @@
environment:
nodejs_version: '14'
# https://ci.appveyor.com/pricing 6-8 GiB? Using 5 GiB as max:
NODE_OPTIONS: '--max-old-space-size=5120'
install:
- ps: Install-Product node $env:nodejs_version x64
- yarn --frozen-lockfile
test_script:
- git --version
- node --version
- yarn --version
- cd packages\vite && yarn build
- cd packages\plugin-vue && yarn build
- yarn test
cache:
- node_modules -> yarn.lock
build: off