From c0a267f55f701ef5d7c080e931eb773752f254b5 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Sat, 15 Oct 2022 22:09:43 +0200 Subject: add emacs 27 to woodpecker --- .woodpecker.yml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to '.woodpecker.yml') diff --git a/.woodpecker.yml b/.woodpecker.yml index 53952ec..f86e1a4 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -2,6 +2,13 @@ pipeline: build: 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 + commands: + - emacs --version - cask install - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit -- cgit v1.2.3 From 7dc15fc0966dc048d96aaf9342195dc35dc7ab02 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Sat, 15 Oct 2022 22:25:43 +0200 Subject: separate pipline names + only CI on main/develop --- .woodpecker.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to '.woodpecker.yml') 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 ] -- cgit v1.2.3 From f324c1cbf71137efa1bd3976c5b56c0ec7f24f47 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Sat, 15 Oct 2022 22:37:44 +0200 Subject: woodpecker 27 not 27.1 --- .woodpecker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.woodpecker.yml') diff --git a/.woodpecker.yml b/.woodpecker.yml index df4f222..ba2c7b5 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -6,7 +6,7 @@ pipeline: - cask install - cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit last: - image: silex/emacs:27.1-ci-cask + image: silex/emacs:27-ci-cask commands: - emacs --version - cask install -- cgit v1.2.3