diff options
| author | ninrod <filipe.silva@gmail.com> | 2020-05-24 09:50:00 -0300 |
|---|---|---|
| committer | ninrod <filipe.silva@gmail.com> | 2020-05-24 09:50:00 -0300 |
| commit | 8069f9c2f393876518fa74f7acfe30615874e867 (patch) | |
| tree | fc562f8726a1b630d4fc6c7c72972b6d82537c36 | |
| parent | 4d6cc94df074b2e1a2806c23f01513ed29b6e243 (diff) | |
trying to update travis configuration
- here I am using evil's travis configuration.
| -rw-r--r-- | .travis.yml | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml index 4d9b382..8f7852a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,26 @@ -sudo: true -dist: precise -language: emacs-lisp +language: nix + +os: + - linux + env: - matrix: - - emacs=emacs-snapshot + - EMACS_CI=emacs-24-5 + - EMACS_CI=emacs-25-3 + - EMACS_CI=emacs-26-3 + - EMACS_CI=emacs-snapshot -before_install: - - sudo add-apt-repository -y ppa:ubuntu-elisp - - sudo apt-get update -qq - - sudo apt-get install -qq $emacs +matrix: + allow_failures: + - env: EMACS_CI=emacs-snapshot + +install: + - bash <(curl https://raw.githubusercontent.com/purcell/nix-emacs-ci/master/travis-install) script: - - make update - - make test + - emacs --version + - script -eqc 'make; make update; make test' > /dev/null + +notifications: + email: + on_success: never + on_failure: always |
