Skip to content

Instantly share code, notes, and snippets.

@bauerd
Last active August 11, 2019 21:41
Show Gist options
  • Select an option

  • Save bauerd/27b24d1a3f881fe508835b76b2ac7c7c to your computer and use it in GitHub Desktop.

Select an option

Save bauerd/27b24d1a3f881fe508835b76b2ac7c7c to your computer and use it in GitHub Desktop.
~/.circleci/config.yml
version: 2
defaults: &defaults
docker:
- image: alpine
environment:
TERM: xterm
working_directory: /root
jobs:
emacs:
<<: *defaults
steps:
- checkout:
path: /root
- run:
command: apk add emacs git
- run:
command: emacs -batch --load /root/.emacs.d/init.el
tmux:
<<: *defaults
steps:
- checkout:
path: /root
- run:
command: apk add tmux py-pip git bash
- run:
command: tmux -f /root/.tmux.conf new-session "exit"
fish:
<<: *defaults
steps:
- checkout:
path: /root
- run:
command: apk add fish moreutils
- run:
command: fish /root/.config/fish/config.fish 2>&1 | tee /dev/tty | ifne false
workflows:
version: 2
default:
jobs:
- emacs
- tmux
- fish
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment