Add CI with drone + makem.sh.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2020-03-25 14:10:46 +01:00
parent c73f35ef9e
commit d4c664fed9
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
3 changed files with 1151 additions and 0 deletions

60
.drone.yml Normal file
View File

@ -0,0 +1,60 @@
# -*- fill-column: 200; -*-
kind: pipeline
name: Lint package
volumes:
- name: debian-package-cache
host:
path: /var/cache/debian-package-cache
steps:
- name: Emacs 26
image: ubuntu:bionic
pull: always
environment:
DEBIAN_FRONTEND: noninteractive
LANG: en_US.UTF-8
commands:
- rm /etc/apt/apt.conf.d/docker-clean
- alias apt-get='rm -f /var/cache/apt/archives/lock && apt-get'
- apt-get update -q
- apt-get install -qq software-properties-common language-pack-en
- add-apt-repository -y ppa:kelleyk/emacs
- apt-get update -q
- apt-get install -qq emacs26-nox aspell-en git
- ./makem.sh --sandbox --install-deps --install-linters lint compile
volumes:
- name: debian-package-cache
path: /var/cache/apt/archives
- name: Emacs snapshot
image: ubuntu:bionic
pull: always
environment:
DEBIAN_FRONTEND: noninteractive
LANG: en_US.UTF-8
commands:
- rm /etc/apt/apt.conf.d/docker-clean
- alias apt-get='rm -f /var/cache/apt/archives/lock && apt-get'
- apt-get update -q
- apt-get install -qq software-properties-common language-pack-en
- add-apt-repository -y ppa:ubuntu-elisp/ppa
- apt-get update -q
- apt-get install -qq emacs-snapshot-nox aspell-en git
- ./makem.sh --sandbox --install-deps --install-linters lint compile
volumes:
- name: debian-package-cache
path: /var/cache/apt/archives
- name: notify
image: drillster/drone-email
pull: always
settings:
host: cryptoparty-celle.de
from: drone@tzend.de
username:
from_secret: email_username
password:
from_secret: email_password
when:
status: [ changed, failure ]

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/flycheck*.el*
*~
*.elc

1090
makem.sh Executable file

File diff suppressed because it is too large Load Diff