2018-09-28 23:58:54 +00:00
|
|
|
# JavaScript Node CircleCI 2.0 configuration file
|
|
|
|
#
|
|
|
|
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
|
2018-10-02 17:57:33 +00:00
|
|
|
# See https://circleci.com/docs/2.0/config-intro/#section=configuration for spec
|
2018-09-28 23:58:54 +00:00
|
|
|
#
|
2018-10-02 17:57:33 +00:00
|
|
|
version: 2.1
|
|
|
|
|
2019-08-28 21:17:50 +00:00
|
|
|
orbs:
|
|
|
|
# https://circleci.com/orbs/registry/orb/circleci/docker
|
2020-01-10 22:27:17 +00:00
|
|
|
docker: circleci/docker@0.5.20
|
2019-08-28 21:17:50 +00:00
|
|
|
|
2018-10-02 17:57:33 +00:00
|
|
|
executors:
|
2019-07-06 14:21:10 +00:00
|
|
|
node10:
|
2018-09-28 23:58:54 +00:00
|
|
|
docker:
|
2019-07-06 14:21:10 +00:00
|
|
|
- image: circleci/node:10
|
|
|
|
working_directory: ~/repo
|
|
|
|
node12:
|
|
|
|
docker:
|
|
|
|
- image: circleci/node:12
|
2018-09-28 23:58:54 +00:00
|
|
|
working_directory: ~/repo
|
|
|
|
|
2018-10-02 17:57:33 +00:00
|
|
|
commands:
|
|
|
|
set_up_node_modules:
|
|
|
|
description: "load node_modules, updating and storing back into cache if necessary"
|
2020-01-07 21:16:39 +00:00
|
|
|
parameters:
|
|
|
|
node_version:
|
|
|
|
description: Which node version we're caching packages for
|
|
|
|
type: integer
|
|
|
|
default: 12
|
2018-09-28 23:58:54 +00:00
|
|
|
steps:
|
|
|
|
- restore_cache:
|
|
|
|
keys:
|
2020-01-07 21:16:39 +00:00
|
|
|
- v1-node<< parameters.node_version >>-dependencies-{{ checksum "package.json" }}
|
2018-10-02 17:57:33 +00:00
|
|
|
# fall back to using the latest cache if no exact match is found
|
2020-01-07 21:16:39 +00:00
|
|
|
- v1-node<< parameters.node_version >>-dependencies-
|
2018-09-28 23:58:54 +00:00
|
|
|
- run: yarn install
|
|
|
|
- save_cache:
|
|
|
|
paths:
|
|
|
|
- node_modules
|
2020-01-07 21:16:39 +00:00
|
|
|
key: v1-node<< parameters.node_version >>-dependencies-{{ checksum "package.json" }}
|
2018-09-28 23:58:54 +00:00
|
|
|
|
2018-10-02 17:57:33 +00:00
|
|
|
jobs:
|
|
|
|
test:
|
2019-07-06 14:21:10 +00:00
|
|
|
executor: node12
|
2018-10-02 17:57:33 +00:00
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- set_up_node_modules
|
Fix flakey CI memory issues (#1230)
Ever since I upgraded all of the dependencies, we've been having
regular CI failures, which seem to share a common root cause of memory
exhaustion. Here are some examples: [1], [2].
[1]: https://circleci.com/gh/sourcecred/sourcecred/1246
[2]: https://circleci.com/gh/sourcecred/sourcecred/1239
After some experimentation, I've found that we can solve the
issue by ensuring that jest runs on its own in CI, so that it doesn't
contend with other tests for memories. Also, I reduce its max workers to
2, which matches the number of CPUs in the CircleCI containers.
Unfortunately, this does increase our build time. The postcommit (non
full) test now takes 45-60s (up from 30-50s), and the full test is also
a little slower. However, building in about one minute is still
acceptably fast, and having regular flakey test failures is not
acceptable, so this is still a win.
If we want to improve on this in the future, we should look into the git
shells getting spawned in `config/env.js`. I noticed that they were
often involved in the out-of-memory failures.
Also, I modified `.circleci/config.yml` so that any branch matching the
regular expression `/ci-.*/` will trigger a full build. That makes it
easier to test against CI failures.
Test plan: I ran about ~10 full builds with this change, and more with
similar variations, and they all passed. Verify that the full builds
that are run for this commit also all pass! Also, verify that running
yarn test locally has unchanged behavior, and running
`yarn test --ci` locally lets jest run to completion before running
any other test.
2019-07-16 00:51:14 +00:00
|
|
|
- run: yarn test --ci
|
2018-10-02 17:57:33 +00:00
|
|
|
test_full:
|
2019-07-06 14:21:10 +00:00
|
|
|
executor: node12
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- set_up_node_modules
|
Fix flakey CI memory issues (#1230)
Ever since I upgraded all of the dependencies, we've been having
regular CI failures, which seem to share a common root cause of memory
exhaustion. Here are some examples: [1], [2].
[1]: https://circleci.com/gh/sourcecred/sourcecred/1246
[2]: https://circleci.com/gh/sourcecred/sourcecred/1239
After some experimentation, I've found that we can solve the
issue by ensuring that jest runs on its own in CI, so that it doesn't
contend with other tests for memories. Also, I reduce its max workers to
2, which matches the number of CPUs in the CircleCI containers.
Unfortunately, this does increase our build time. The postcommit (non
full) test now takes 45-60s (up from 30-50s), and the full test is also
a little slower. However, building in about one minute is still
acceptably fast, and having regular flakey test failures is not
acceptable, so this is still a win.
If we want to improve on this in the future, we should look into the git
shells getting spawned in `config/env.js`. I noticed that they were
often involved in the out-of-memory failures.
Also, I modified `.circleci/config.yml` so that any branch matching the
regular expression `/ci-.*/` will trigger a full build. That makes it
easier to test against CI failures.
Test plan: I ran about ~10 full builds with this change, and more with
similar variations, and they all passed. Verify that the full builds
that are run for this commit also all pass! Also, verify that running
yarn test locally has unchanged behavior, and running
`yarn test --ci` locally lets jest run to completion before running
any other test.
2019-07-16 00:51:14 +00:00
|
|
|
- run: yarn test --full --ci
|
2019-07-06 14:21:10 +00:00
|
|
|
test_full_10:
|
|
|
|
executor: node10
|
2018-10-02 17:57:33 +00:00
|
|
|
steps:
|
|
|
|
- checkout
|
2020-01-07 21:16:39 +00:00
|
|
|
- set_up_node_modules:
|
|
|
|
node_version: 10
|
Fix flakey CI memory issues (#1230)
Ever since I upgraded all of the dependencies, we've been having
regular CI failures, which seem to share a common root cause of memory
exhaustion. Here are some examples: [1], [2].
[1]: https://circleci.com/gh/sourcecred/sourcecred/1246
[2]: https://circleci.com/gh/sourcecred/sourcecred/1239
After some experimentation, I've found that we can solve the
issue by ensuring that jest runs on its own in CI, so that it doesn't
contend with other tests for memories. Also, I reduce its max workers to
2, which matches the number of CPUs in the CircleCI containers.
Unfortunately, this does increase our build time. The postcommit (non
full) test now takes 45-60s (up from 30-50s), and the full test is also
a little slower. However, building in about one minute is still
acceptably fast, and having regular flakey test failures is not
acceptable, so this is still a win.
If we want to improve on this in the future, we should look into the git
shells getting spawned in `config/env.js`. I noticed that they were
often involved in the out-of-memory failures.
Also, I modified `.circleci/config.yml` so that any branch matching the
regular expression `/ci-.*/` will trigger a full build. That makes it
easier to test against CI failures.
Test plan: I ran about ~10 full builds with this change, and more with
similar variations, and they all passed. Verify that the full builds
that are run for this commit also all pass! Also, verify that running
yarn test locally has unchanged behavior, and running
`yarn test --ci` locally lets jest run to completion before running
any other test.
2019-07-16 00:51:14 +00:00
|
|
|
- run: yarn test --full --ci
|
2018-10-02 17:57:33 +00:00
|
|
|
|
|
|
|
workflows:
|
2019-08-28 21:17:50 +00:00
|
|
|
version: 2.0
|
2018-10-02 17:57:33 +00:00
|
|
|
commit:
|
|
|
|
jobs:
|
|
|
|
- test
|
2019-11-11 21:52:57 +00:00
|
|
|
# We also run full-tests on each commit, but they're not configured as
|
|
|
|
# blocking checks. Thus, in the case that they complete before you want
|
|
|
|
# to merge your pull request, they provide information, and otherwise
|
|
|
|
# they don't get in your way.
|
|
|
|
- test_full
|
|
|
|
- test_full_10
|
|
|
|
|
2019-08-28 21:17:50 +00:00
|
|
|
- docker/publish:
|
|
|
|
deploy: false
|
|
|
|
image: sourcecred/sourcecred
|
|
|
|
tag: latest
|
2020-01-10 22:27:17 +00:00
|
|
|
cache_from: node:12,sourcecred/sourcecred:dev
|
2019-08-28 21:17:50 +00:00
|
|
|
requires:
|
|
|
|
- test
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
ignore:
|
|
|
|
- master
|
|
|
|
after_build:
|
|
|
|
- run:
|
|
|
|
name: Preview Docker Tag for Build
|
|
|
|
command: |
|
|
|
|
DOCKER_TAG=$(docker run sourcecred/sourcecred --version | cut -d' ' -f2)
|
|
|
|
echo "Version that would be used for Docker tag is ${DOCKER_TAG}"
|
|
|
|
|
|
|
|
- docker/publish:
|
|
|
|
image: sourcecred/sourcecred
|
2020-01-10 22:27:17 +00:00
|
|
|
cache_from: node:12,sourcecred/sourcecred:dev
|
2019-08-28 21:17:50 +00:00
|
|
|
requires:
|
|
|
|
- test
|
|
|
|
- test_full
|
|
|
|
- test_full_10
|
|
|
|
tag: dev
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only: master
|
|
|
|
|
2020-01-10 21:54:31 +00:00
|
|
|
# Separate workflow just for version tag releases.
|
|
|
|
tagged-release:
|
|
|
|
jobs:
|
|
|
|
- test:
|
|
|
|
filters: &version-tag-only
|
|
|
|
branches:
|
|
|
|
ignore: /.*/
|
|
|
|
tags:
|
|
|
|
only: /^v.*/
|
|
|
|
|
|
|
|
- test_full:
|
|
|
|
filters: *version-tag-only
|
|
|
|
|
|
|
|
- test_full_10:
|
|
|
|
filters: *version-tag-only
|
|
|
|
|
|
|
|
- docker/publish:
|
|
|
|
filters: *version-tag-only
|
|
|
|
requires:
|
|
|
|
- test
|
|
|
|
- test_full
|
|
|
|
- test_full_10
|
|
|
|
image: sourcecred/sourcecred
|
|
|
|
tag: latest
|
2020-01-10 22:27:17 +00:00
|
|
|
cache_from: node:12,sourcecred/sourcecred:dev
|
2020-01-10 21:54:31 +00:00
|
|
|
after_build:
|
|
|
|
- run:
|
|
|
|
name: Publish Docker Tag with Sourcecred Version
|
|
|
|
command: |
|
|
|
|
DOCKER_TAG=$(docker run sourcecred/sourcecred --version | cut -d' ' -f2)
|
|
|
|
echo "Version for Docker tag is ${DOCKER_TAG}"
|
|
|
|
docker tag sourcecred/sourcecred:latest sourcecred/sourcecred:${DOCKER_TAG}
|
|
|
|
docker push sourcecred/sourcecred:${DOCKER_TAG}
|
|
|
|
docker push sourcecred/sourcecred:latest
|
2019-08-28 21:17:50 +00:00
|
|
|
|
2018-10-02 17:57:33 +00:00
|
|
|
nightly:
|
|
|
|
triggers:
|
|
|
|
- schedule:
|
|
|
|
cron: "0 22 * * *" # 22:00 UTC
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
jobs:
|
|
|
|
- test_full
|
2019-07-06 14:21:10 +00:00
|
|
|
- test_full_10
|