Update CircleCI configuration.
This commit is contained in:
parent
e3e83630b5
commit
fb9caec663
|
@ -21,7 +21,7 @@ commands:
|
||||||
# Define a job to be invoked later in a workflow.
|
# Define a job to be invoked later in a workflow.
|
||||||
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
|
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
testbuild:
|
||||||
working_directory: ~/repo
|
working_directory: ~/repo
|
||||||
# Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
|
# Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
|
||||||
# See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
|
# See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
|
||||||
|
@ -54,7 +54,6 @@ jobs:
|
||||||
# Invoke jobs via workflows
|
# Invoke jobs via workflows
|
||||||
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
|
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
|
||||||
workflows:
|
workflows:
|
||||||
sample: # This is the name of the workflow, feel free to change it to better match your workflow.
|
testbuild:
|
||||||
# Inside the workflow, you define the jobs you want to run.
|
|
||||||
jobs:
|
jobs:
|
||||||
- build
|
- testbuild
|
||||||
|
|
Loading…
Reference in New Issue