branch: elpa/swift-mode commit 9676f906f222fcb23d3196c43bb7ccc75fc98984 Author: taku0 <mxxouy6x3m_git...@tatapa.org> Commit: taku0 <mxxouy6x3m_git...@tatapa.org>
Update CI versions silex/emacs no longer provides old minor versions, so test_in_docker.sh and lint_in_docker.sh now test for only the latest minor version of each major versions. https://github.com/Silex/docker-emacs/issues/62#issuecomment-813070863 .github/workflows/run-test.yml, which uses nix-emacs-ci via purcell/setup-emacs, still tests against older minor versions. --- .github/workflows/run-test.yml | 2 +- scripts/lint_in_docker.sh | 2 +- scripts/test_in_docker.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-test.yml b/.github/workflows/run-test.yml index 07a6389..cf31074 100644 --- a/.github/workflows/run-test.yml +++ b/.github/workflows/run-test.yml @@ -16,7 +16,7 @@ jobs: # '25.1' fails for some reason even though `make lint_in_docker` succeeds. # swift-mode-beginning-of-defun.el:1081: All variables and subroutines might as well have a documentation string # swift-mode-beginning-of-defun.el:1135: All variables and subroutines might as well have a documentation string - version: ['24.4', '24.5', '25.2', '25.3', '26.1', '26.2', '26.3', '27.1', 'snapshot'] + version: ['24.4', '24.5', '25.2', '25.3', '26.1', '26.2', '26.3', '27.1', '27.2', 'snapshot'] env: ELDEV_DIR: .eldev diff --git a/scripts/lint_in_docker.sh b/scripts/lint_in_docker.sh index b9df3a8..f3f1a1d 100755 --- a/scripts/lint_in_docker.sh +++ b/scripts/lint_in_docker.sh @@ -2,7 +2,7 @@ # Run linter in Docker. Used in Makefile. -for version in 24.4 24.5 25.1 25.2 25.3 26.1 26.2 26.3 27.1 +for version in 24 25 26 27 do docker \ run \ diff --git a/scripts/test_in_docker.sh b/scripts/test_in_docker.sh index 113fcd4..5eee9b0 100755 --- a/scripts/test_in_docker.sh +++ b/scripts/test_in_docker.sh @@ -2,7 +2,7 @@ # Run tests in Docker. Used in Makefile. -for version in 24.4 24.5 25.1 25.2 25.3 26.1 26.2 26.3 27.1 +for version in 24 25 26 27 do docker \ run \