File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,11 +33,11 @@ jobs:
33
33
- name : Running Emacs
34
34
run : |
35
35
ln -s "$(pwd)" "../.emacs.d"
36
+ echo "Enabling all MinEmacs modules"
36
37
mkdir ../.minemacs.d/
37
38
cp .github/workflows/test-confs/modules-all.el ../.minemacs.d/modules.el
38
- export MINEMACS_CI=1
39
- MINEMACS_CI=1 HOME=$GITHUB_WORKSPACE/.. emacs --no-window-system --batch --script init.el 2>&1 | tee /tmp/emacs-run-output || echo "Exited with error code $?"
40
- RUN_DATA=$(cat /tmp/emacs-run-output)
39
+ echo "Running Emacs with MinEmacs configuration"
40
+ RUN_DATA=$(MINEMACS_CI=1 HOME=$GITHUB_WORKSPACE/.. emacs -nw --batch --script init.el 2>&1 || echo "Emacs exited with non-zero code $?")
41
41
echo "Emacs complete output"
42
42
echo "$RUN_DATA"
43
43
WARNINGS=$(echo "$RUN_DATA" | sed '{/Warning/N;s/\n//;}' | grep Warning | sed -E 's/^(.*\.el)/- \*\*\1\*\*/')
You can’t perform that action at this time.
0 commit comments