diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-10-15 22:25:43 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-10-15 22:30:30 +0200 |
commit | 7dc15fc0966dc048d96aaf9342195dc35dc7ab02 (patch) | |
tree | 71d70ae35546f05f2cee34e5e34cd2bc924b85ff /.woodpecker.yml | |
parent | c0a267f55f701ef5d7c080e931eb773752f254b5 (diff) |
separate pipline names + only CI on main/develop
Diffstat (limited to '.woodpecker.yml')
-rw-r--r-- | .woodpecker.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.woodpecker.yml b/.woodpecker.yml index f86e1a4..df4f222 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,14 +1,15 @@ pipeline: - build: + current: image: silex/emacs:cask commands: - emacs --version - cask install - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit - build: - image: silex/emacs:27 + last: + image: silex/emacs:27.1-ci-cask commands: - emacs --version - cask install - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit ++branches: [ main, develop ] |