Skip to content

Instantly share code, notes, and snippets.

@Jerska
Last active December 31, 2019 15:47
Show Gist options
  • Save Jerska/d9432aafe4decb846a12965d4a6e8bba to your computer and use it in GitHub Desktop.
Save Jerska/d9432aafe4decb846a12965d4a6e8bba to your computer and use it in GitHub Desktop.
Sample CircleCI configuration
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