File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 16
16
uses : purcell/setup-emacs@master
17
17
with :
18
18
version : ${{ matrix.emacs_version }}
19
+ - name : Check out seq
20
+ if : matrix.emacs_version == '26.1' || matrix.emacs_version == '27.2' || matrix.emacs_version == '28.2'
21
+ # Note: This relies on Transient's Makefile looking in this spot
22
+ # (relative to Transient checkout) by default.
23
+ run : |
24
+ git clone --branch=externals/seq --depth=1 \
25
+ https://git.savannah.gnu.org/git/emacs/elpa.git seq
26
+ echo SEQ_DIR=$PWD/seq >>$GITHUB_ENV
19
27
- name : Check out compat
20
28
uses : actions/checkout@v2
21
29
with :
Original file line number Diff line number Diff line change 1
1
2
2
-include config.mk
3
3
4
+ SEQ_DIR ?= /dev/null
4
5
COMPAT_DIR ?= /dev/null
5
6
TRANSIENT_DIR ?= /dev/null
6
7
7
- LOAD_PATH = -L $(COMPAT_DIR ) -L $(TRANSIENT_DIR ) -L .
8
+ LOAD_PATH = -L $(SEQ_DIR ) -L $( COMPAT_DIR ) -L $(TRANSIENT_DIR ) -L .
8
9
EMACS = emacs
9
10
BATCH = $(EMACS ) -Q --batch $(LOAD_PATH )
10
11
You can’t perform that action at this time.
0 commit comments