Skip to content

Switch to using CircleCI #159

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
version: 2.1

# Default actions to perform on each Emacs version
default: &default-steps
steps:
- checkout
- run: apt-get update && apt-get install make
- run: make elpa
- run: make test

# Enumerated list of Emacs versions
jobs:
test-emacs-25:
docker:
- image: silex/emacs:25-dev
entrypoint: bash
<<: *default-steps

test-emacs-26:
docker:
- image: silex/emacs:26-dev
entrypoint: bash
<<: *default-steps

test-emacs-master:
docker:
- image: silex/emacs:master-dev
entrypoint: bash
<<: *default-steps

workflows:
version: 2
ci-test-matrix:
jobs:
- test-emacs-25
- test-emacs-26
- test-emacs-master
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version:
emacs --version

test : version
cask exec buttercup -L .

elpa:
cask install
cask update
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[![License GPL 3][badge-license]][copying]
[![MELPA][melpa-badge]][melpa-package]
[![MELPA Stable][melpa-stable-badge]][melpa-stable-package]
[![Circle CI][circle-ci-badge]][circleci]

# inf-clojure

Expand Down Expand Up @@ -372,7 +373,8 @@ Distributed under the GNU General Public License; type <kbd>C-h C-c</kbd> to vie
[melpa-package]: http://melpa.org/#/inf-clojure
[melpa-stable-package]: http://stable.melpa.org/#/inf-clojure
[COPYING]: http://www.gnu.org/copyleft/gpl.html
[badge-travis]: https://travis-ci.org/clojure-emacs/inf-clojure.svg?branch=master
[circleci]: https://circleci.com/gh/clojure-emacs/inf-clojure
[circleci-badge]: https://circleci.com/gh/clojure-emacs/inf-clojure.svg?style=svg
[CIDER]: https://github.com/clojure-emacs/cider
[Leiningen]: http://leiningen.org
[contributors]: https://github.com/clojure-emacs/inf-clojure/contributors
Expand Down