aboutsummaryrefslogtreecommitdiff
path: root/.woodpecker.yml
diff options
context:
space:
mode:
Diffstat (limited to '.woodpecker.yml')
-rw-r--r--.woodpecker.yml27
1 files changed, 16 insertions, 11 deletions
diff --git a/.woodpecker.yml b/.woodpecker.yml
index ba2c7b5..a9efb82 100644
--- a/.woodpecker.yml
+++ b/.woodpecker.yml
@@ -1,15 +1,20 @@
pipeline:
- current:
+ current-emacs:
image: silex/emacs:cask
- commands:
- - emacs --version
- - cask install
- - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit
- last:
+ when:
+ branch: [main, develop]
+ commands:
+ - emacs --version
+ - cask install
+ - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit
+
+ last-emacs:
image: silex/emacs:27-ci-cask
- commands:
- - emacs --version
- - cask install
- - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit
+ when:
+ branch: [main, develop]
+ commands:
+ - emacs --version
+ - cask install
+ - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit
+
-+branches: [ main, develop ]