Last active
August 11, 2019 21:41
-
-
Save bauerd/27b24d1a3f881fe508835b76b2ac7c7c to your computer and use it in GitHub Desktop.
~/.circleci/config.yml
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 | |
| 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