1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/.circleci/config.yml
Sergio Hg ad29b7d701 ci: allow prereleases following Semver tagging spec (#1046)
Semantic Versioning 2.0.0 sets in paragraphs 9 and 10 how prereleases should be denoted. This adapts that specification to a Regex pattern.

See more: https://semver.org/#spec-item-9 and https://semver.org/#spec-item-10
2018-10-04 14:20:04 +02:00

257 lines
5.8 KiB
YAML

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 }}
- &coverage_key
coverage-{{ .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_non_dev_branches
filters:
tags:
only: /.*/
branches:
ignore:
- gh-pages
- l10n_master
- /release\/.*/
- &execute_on_release
filters:
tags:
only: /v?[0-9]+(\.[0-9]+)+([-+\.][0-9a-zA-Z]+)*/
branches:
ignore:
- /.*/
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 test
yarn test:functional
test_node9:
<<: *defaults
<<: *default_executor
steps:
- *restore_repo
- run:
name: Test with Node 9
command: |
yarn test
yarn test:functional
- save_cache:
key: *coverage_key
paths:
- coverage
test_node10:
<<: *defaults
<<: *node10_executor
steps:
- *restore_repo
- run:
name: Test with Node 10
command: |
yarn run test
yarn test:functional
test_e2e:
<<: *defaults
<<: *node9_browser_executor
steps:
- *restore_repo
- run:
name: Test End-to-End
command: yarn run test:e2e
test_size:
<<: *defaults
<<: *default_executor
steps:
- *restore_repo
- run:
name: Test size
command: yarn test:size
coverage:
<<: *defaults
<<: *default_executor
steps:
- *restore_repo
- restore_cache:
key: *coverage_key
- run:
name: Publish coverage
command: yarn run coverage:publish
- store_artifacts:
path: coverage/clover.xml
prefix: tests
- store_artifacts:
path: coverage
prefix: coverage
- store_test_results:
path: coverage/clover.xml
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
publish_package:
<<: *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_non_dev_branches
- test_node6:
requires:
- prepare
<<: *ignore_non_dev_branches
- test_node8:
requires:
- prepare
<<: *ignore_non_dev_branches
- test_node9:
requires:
- prepare
<<: *ignore_non_dev_branches
- test_node10:
requires:
- prepare
<<: *ignore_non_dev_branches
- test_e2e:
requires:
- prepare
<<: *ignore_non_dev_branches
- test_size:
requires:
- prepare
<<: *ignore_non_dev_branches
- coverage:
requires:
- test_node6
- test_node8
- test_node9
- test_node10
- test_e2e
- test_size
<<: *ignore_non_dev_branches
- publish_gh_pages:
requires:
- test_node6
- test_node8
- test_node9
- test_node10
- test_e2e
- test_size
<<: *execute_on_release
- publish_package:
requires:
- coverage
- publish_gh_pages
<<: *execute_on_release