You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# CircleCI 2.0 does not support environment variables that refer to each other the same way as 1.0 did.
16
-
# If any of these refer to each other, rewrite them so that they don't or see https://circleci.com/docs/2.0/env-vars/#interpolating-environment-variables-to-set-other-environment-variables .
5
+
17
6
environment:
18
-
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts
19
-
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
20
7
_JAVA_OPTIONS: -Xms512m -Xmx1024m
21
-
# In CircleCI 1.0 we used a pre-configured image with a large number of languages and other packages.
22
-
# In CircleCI 2.0 you can now specify your own image, or use one of our pre-configured images.
23
-
# The following configuration line tells CircleCI to use the specified docker image as the runtime environment for you job.
24
-
# We have selected a pre-built image that mirrors the build environment we use on
25
-
# the 1.0 platform, but we recommend you choose an image more tailored to the needs
26
-
# of each job. For more information on choosing an image (or alternatively using a
27
-
# VM instead of a container) see https://circleci.com/docs/2.0/executor-types/
28
-
# To see the list of pre-built images that CircleCI provides for most common languages see
# If you break your build into multiple jobs with workflows, you will probably want to do the parts of this that are relevant in each
36
-
# The following `checkout` command checks out your code to your working directory. In 1.0 we did this implicitly. In 2.0 you can choose where in the course of a job your code should be checked out.
37
13
- checkout
38
-
# Prepare for artifact and test results collection equivalent to how it was done on 1.0.
39
-
# In many cases you can simplify this from what is generated here.
40
-
# 'See docs on artifact collection here https://circleci.com/docs/2.0/artifacts/'
0 commit comments