aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRadon Rosborough <radon.neon@gmail.com>2019-07-10 19:29:51 -0700
committerRadon Rosborough <radon.neon@gmail.com>2019-07-10 21:42:34 -0700
commit6765e7f7b3db54ddf0f0c1150bf495fdd2d822c8 (patch)
tree79d1ca9198f6548685b9f19667dd566c3e0a0310
parentece42ec82bf14d529e262e66c8d4ad61126aedce (diff)
Configure Semaphore CI
-rw-r--r--.semaphore/semaphore.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.semaphore/semaphore.yml b/.semaphore/semaphore.yml
new file mode 100644
index 0000000..bcfe171
--- /dev/null
+++ b/.semaphore/semaphore.yml
@@ -0,0 +1,24 @@
+version: v1.0
+name: Apheleia
+agent:
+ machine:
+ type: e1-standard-2
+ os_image: ubuntu1804
+blocks:
+ - name: Apheleia CI
+ task:
+ jobs:
+ - name: Apheleia CI
+ matrix:
+ - env_var: EMACS_VERSION
+ values:
+ - "25.2"
+ - "25.3"
+ - "26.1"
+ - "26.2"
+ commands:
+ - checkout
+ - >-
+ docker run --rm -v "$PWD:/src"
+ silex/emacs:"$EMACS_VERSION" sh -c
+ 'apt-get update && apt-get install -y make && make -C /src'