Created
September 4, 2018 18:52
-
-
Save sergeant-wizard/82059b9301ad701e974feb849108cffa to your computer and use it in GitHub Desktop.
minimum circleci config file to reproduce the issue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
# vm jobs | |
machine: | |
machine: true | |
steps: | |
- run: | | |
echo $SLEEP | |
date | |
sleep $SLEEP | |
date | |
echo 'Done sleeping.' | |
environment: | |
SLEEP: 1 | |
workflows: | |
version: 2 | |
vm_jobs: | |
jobs: | |
- machine |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment