mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
Merge pull request #738 from sergiohgz/612-cicleci-upgrade
chore: Migrate to CircleCI 2.0
This commit is contained in:
commit
e24121d81e
2 changed files with 210 additions and 51 deletions
210
.circleci/config.yml
Normal file
210
.circleci/config.yml
Normal file
|
@ -0,0 +1,210 @@
|
||||||
|
version: 2
|
||||||
|
|
||||||
|
aliases:
|
||||||
|
- &defaults
|
||||||
|
working_directory: ~/verdaccio
|
||||||
|
- &node6_executor
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:6
|
||||||
|
- &node8_executor
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:8
|
||||||
|
- &node9_executor
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:9
|
||||||
|
- &node9_browser_executor
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:9-browsers
|
||||||
|
- &node10_executor
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:10
|
||||||
|
- &default_executor
|
||||||
|
<<: *node9_executor
|
||||||
|
- &repo_key
|
||||||
|
repo-{{ .Branch }}-{{ .Revision }}
|
||||||
|
- &base_config_key
|
||||||
|
base-config-{{ .Branch }}-{{ .Revision }}
|
||||||
|
- &yarn_cache_key
|
||||||
|
yarn-sha-{{ checksum "yarn.lock" }}
|
||||||
|
- &restore_repo
|
||||||
|
restore_cache:
|
||||||
|
keys:
|
||||||
|
- *repo_key
|
||||||
|
- &ignore_branches
|
||||||
|
filters:
|
||||||
|
branches:
|
||||||
|
ignore:
|
||||||
|
- gh-pages
|
||||||
|
- l10n_master
|
||||||
|
- /release\/.*/
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
prepare:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *default_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- checkout
|
||||||
|
- restore_cache:
|
||||||
|
key: *base_config_key
|
||||||
|
- run:
|
||||||
|
name: 'Base environment setup'
|
||||||
|
command: |
|
||||||
|
git config --global user.email "verdacciobot@users.noreply.github.com"
|
||||||
|
git config --global user.name "Verdaccio bot for Deployments"
|
||||||
|
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
|
||||||
|
echo "machine github.com login verdacciobot password $GITHUB_TOKEN" > ~/.netrc
|
||||||
|
- save_cache:
|
||||||
|
key: *base_config_key
|
||||||
|
paths:
|
||||||
|
- ~/.npmrc
|
||||||
|
- ~/.gitconfig
|
||||||
|
- ~/.netrc
|
||||||
|
- restore_cache:
|
||||||
|
key: *yarn_cache_key
|
||||||
|
- run:
|
||||||
|
name: Install Js dependencies
|
||||||
|
command: yarn install --no-progress
|
||||||
|
- run:
|
||||||
|
name: Prepare CI
|
||||||
|
command: yarn run pre:ci
|
||||||
|
- run:
|
||||||
|
name: Build project
|
||||||
|
command: yarn run code:build
|
||||||
|
- save_cache:
|
||||||
|
key: *yarn_cache_key
|
||||||
|
paths:
|
||||||
|
- ~/.yarn
|
||||||
|
- ~/.cache/yarn
|
||||||
|
- node_modules
|
||||||
|
- save_cache:
|
||||||
|
key: *repo_key
|
||||||
|
paths:
|
||||||
|
- ~/verdaccio
|
||||||
|
|
||||||
|
test_node6:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *node6_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- run:
|
||||||
|
name: Test with Node 6
|
||||||
|
command: yarn run test
|
||||||
|
|
||||||
|
test_node8:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *node8_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- run:
|
||||||
|
name: Test with Node 8
|
||||||
|
command: yarn run test
|
||||||
|
|
||||||
|
test_node9:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *default_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- run:
|
||||||
|
name: Test with Node 9
|
||||||
|
command: yarn run test
|
||||||
|
|
||||||
|
test_node10:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *node10_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- run:
|
||||||
|
name: Test with Node 10
|
||||||
|
command: yarn run test
|
||||||
|
|
||||||
|
test_e2e:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *node9_browser_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- run:
|
||||||
|
name: Test End-to-End
|
||||||
|
command: yarn run test:e2e
|
||||||
|
|
||||||
|
coverage:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *default_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- run:
|
||||||
|
name: Publish coverage
|
||||||
|
command: yarn run coverage:publish
|
||||||
|
|
||||||
|
publish_gh_pages:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *default_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- restore_cache:
|
||||||
|
key: *base_config_key
|
||||||
|
- run:
|
||||||
|
name: Publish gh-pages
|
||||||
|
command: |
|
||||||
|
cd website
|
||||||
|
yarn install
|
||||||
|
GIT_USER=verdacciobot USE_SSH=false yarn run publish-gh-pages
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
<<: *defaults
|
||||||
|
<<: *default_executor
|
||||||
|
steps:
|
||||||
|
- *restore_repo
|
||||||
|
- restore_cache:
|
||||||
|
key: *base_config_key
|
||||||
|
- run:
|
||||||
|
name: Publish
|
||||||
|
command: scripts/publish.sh
|
||||||
|
|
||||||
|
workflows:
|
||||||
|
version: 2
|
||||||
|
workflow:
|
||||||
|
jobs:
|
||||||
|
- prepare:
|
||||||
|
<<: *ignore_branches
|
||||||
|
- test_node6:
|
||||||
|
requires:
|
||||||
|
- prepare
|
||||||
|
<<: *ignore_branches
|
||||||
|
- test_node8:
|
||||||
|
requires:
|
||||||
|
- prepare
|
||||||
|
<<: *ignore_branches
|
||||||
|
- test_node9:
|
||||||
|
requires:
|
||||||
|
- prepare
|
||||||
|
<<: *ignore_branches
|
||||||
|
- test_node10:
|
||||||
|
requires:
|
||||||
|
- prepare
|
||||||
|
<<: *ignore_branches
|
||||||
|
- test_e2e:
|
||||||
|
requires:
|
||||||
|
- prepare
|
||||||
|
<<: *ignore_branches
|
||||||
|
- coverage:
|
||||||
|
requires:
|
||||||
|
- prepare
|
||||||
|
<<: *ignore_branches
|
||||||
|
- publish_gh_pages:
|
||||||
|
requires:
|
||||||
|
- test_node6
|
||||||
|
- test_node8
|
||||||
|
- test_node9
|
||||||
|
- test_node10
|
||||||
|
- test_e2e
|
||||||
|
- coverage
|
||||||
|
<<: *ignore_branches
|
||||||
|
- deploy:
|
||||||
|
requires:
|
||||||
|
- publish_gh_pages
|
||||||
|
filters:
|
||||||
|
branches:
|
||||||
|
ignore: /.*/
|
||||||
|
tags:
|
||||||
|
only: /(v)?[0-9]+(\.[0-9]+)*/
|
51
circle.yml
51
circle.yml
|
@ -1,51 +0,0 @@
|
||||||
machine:
|
|
||||||
environment:
|
|
||||||
YARN_VERSION: 1.6.0
|
|
||||||
PATH: "${PATH}:${HOME}/.yarn/bin:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
|
|
||||||
node:
|
|
||||||
version: 9
|
|
||||||
dependencies:
|
|
||||||
pre:
|
|
||||||
- git config --global user.email "verdacciobot@users.noreply.github.com"
|
|
||||||
- git config --global user.name "Verdaccio bot 🤖 for Deployments"
|
|
||||||
- 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
|
|
||||||
- |
|
|
||||||
if [[ ! -e ~/.yarn/bin/yarn || $(yarn --version) != "${YARN_VERSION}" ]]; then
|
|
||||||
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version $YARN_VERSION
|
|
||||||
fi
|
|
||||||
- nvm install 6
|
|
||||||
- nvm install 8
|
|
||||||
- nvm install 10
|
|
||||||
|
|
||||||
cache_directories:
|
|
||||||
- ~/.yarn
|
|
||||||
- ~/.cache/yarn
|
|
||||||
- "node_modules"
|
|
||||||
override:
|
|
||||||
- yarn install --no-progress
|
|
||||||
test:
|
|
||||||
override:
|
|
||||||
- yarn run pre:ci
|
|
||||||
- nvm alias default 6
|
|
||||||
- yarn run test
|
|
||||||
- nvm alias default 8
|
|
||||||
- yarn run test
|
|
||||||
- nvm alias default 9
|
|
||||||
- yarn run test
|
|
||||||
- nvm alias default 10
|
|
||||||
- yarn run test
|
|
||||||
- yarn run test:e2e
|
|
||||||
- yarn run coverage:publish
|
|
||||||
- echo "machine github.com login verdacciobot password $GITHUB_TOKEN" > ~/.netrc
|
|
||||||
- cd website && yarn install && GIT_USER=verdacciobot USE_SSH=false yarn run publish-gh-pages
|
|
||||||
deployment:
|
|
||||||
production:
|
|
||||||
tag: /(v)?[0-9]+(\.[0-9]+)*/
|
|
||||||
commands:
|
|
||||||
- ./scripts/publish.sh
|
|
||||||
general:
|
|
||||||
branches:
|
|
||||||
ignore:
|
|
||||||
- gh-pages
|
|
||||||
- l10n_master
|
|
||||||
- /release\/.*/
|
|
Loading…
Reference in a new issue