diff options
| author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-17 12:44:28 +0100 |
|---|---|---|
| committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-17 12:44:28 +0100 |
| commit | 7b6aaa5a5e9986f5114f11a3d6ded93403cf7205 (patch) | |
| tree | 6ddcea6943a4540a396034b99c62930997087976 | |
| parent | 5b79975808c9d4bb04b64feeec1bb8204c0d7357 (diff) | |
Revert "woodpecker fix conditional branch execution"
This reverts commit 5b79975808c9d4bb04b64feeec1bb8204c0d7357.
| -rw-r--r-- | .woodpecker.yml | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/.woodpecker.yml b/.woodpecker.yml index a9efb82..ba2c7b5 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,20 +1,15 @@ pipeline: - current-emacs: + current: image: silex/emacs:cask - 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: + commands: + - emacs --version + - cask install + - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit + last: image: silex/emacs:27-ci-cask - when: - branch: [main, develop] - commands: - - emacs --version - - cask install - - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit - + commands: + - emacs --version + - cask install + - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit ++branches: [ main, develop ] |
