Skip to content

Commit a36a1cb

Browse files
authored
Merge pull request #57 from peterbecich/travis-ci
Travis CI
2 parents 64106be + aaa4d3a commit a36a1cb

File tree

3 files changed

+38
-1
lines changed

3 files changed

+38
-1
lines changed

.travis.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
dist: xenial
2+
language: generic
3+
addons:
4+
apt:
5+
update: true
6+
7+
jobs:
8+
allow_failures:
9+
- env: EVM_EMACS=emacs-git-snapshot-travis-linux-xenial
10+
include:
11+
- stage: build
12+
env: EVM_EMACS=emacs-26.3-travis-linux-xenial
13+
script: &build
14+
- rm -rf $HOME/.evm
15+
- git clone https://github.com/rejeep/evm.git $HOME/.evm
16+
- export PATH=$HOME/.evm/bin:$HOME/.cask/bin:$PATH
17+
- evm config path /tmp
18+
- evm install $EVM_EMACS --use --skip
19+
- emacs --version
20+
- curl -fsSL https://raw.githubusercontent.com/cask/cask/master/go | python
21+
- travis_retry cask install
22+
- cask build
23+
- stage: build
24+
env: EVM_EMACS=emacs-git-snapshot-travis-linux-xenial
25+
script: *build

Cask

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
(source gnu)
2+
(source melpa)
3+
4+
(package-file "lsp-haskell.el")
5+
6+
(development
7+
(depends-on "f")
8+
(depends-on "ecukes")
9+
(depends-on "ert-runner")
10+
(depends-on "el-mock")
11+
(depends-on "spinner")
12+
(depends-on "haskell-mode"))

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
lsp-haskell
22
===========
33

4-
[![MELPA](https://melpa.org/packages/lsp-haskell-badge.svg)](https://melpa.org/#/lsp-haskell)
4+
[![MELPA](https://melpa.org/packages/lsp-haskell-badge.svg)](https://melpa.org/#/lsp-haskell) [![Build Status](https://travis-ci.com/emacs-lsp/lsp-haskell.svg?branch=master)](https://travis-ci.com/emacs-lsp/lsp-haskell)
55

66
An Emacs Lisp library for interacting with
77
a [haskell-ide-engine](https://github.com/haskell/haskell-ide-engine/)

0 commit comments

Comments
 (0)