Skip to content

Commit

Permalink
CircleCI: create some dependencies
Browse files Browse the repository at this point in the history
This will use resources more carefully.
  • Loading branch information
vemv committed Aug 11, 2023
1 parent 37de49a commit da52fee
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ commands:
name: Run Elisp-lint
command: eldev lint
- run:
name: Byte-compile `.el' files
name: Byte-compile .el files
command: eldev -dtT compile --warnings-as-errors

jobs:
Expand Down Expand Up @@ -110,13 +110,25 @@ jobs:
- lint

workflows:
version: 2
version: 2.1
ci-test-matrix:
jobs:
- test-ubuntu-emacs-26
- test-ubuntu-emacs-27
- test-ubuntu-emacs-28
- test-ubuntu-emacs-master
- test-lint
- test-macos-emacs-latest
- test-windows-emacs-latest
- test-ubuntu-emacs-26:
requires:
- test-lint
- test-ubuntu-emacs-27:
requires:
- test-lint
- test-ubuntu-emacs-28:
requires:
- test-lint
- test-ubuntu-emacs-master:
requires:
- test-lint
- test-windows-emacs-latest:
requires:
- test-lint
- test-macos-emacs-latest:
requires:
- test-ubuntu-emacs-28

0 comments on commit da52fee

Please sign in to comment.