Last active
December 31, 2019 15:47
-
-
Save Jerska/d9432aafe4decb846a12965d4a6e8bba to your computer and use it in GitHub Desktop.
Sample CircleCI configuration
This file contains hidden or 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: | |
build: | |
environment: | |
- TEST: true | |
docker: | |
- image: debian:stretch | |
steps: | |
- checkout | |
- run: | |
name: Print env var | |
command: echo $TEST | |
- run: | |
name: Print the Current Time | |
command: date | |
workflows: | |
version: 2 | |
suite: | |
jobs: | |
- build: | |
filters: | |
branches: | |
only: | |
- imabranchwhichdoesntexist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment