-
Notifications
You must be signed in to change notification settings - Fork 19
36 lines (34 loc) · 1.02 KB
/
ci-windows.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: CI Windows
on:
push:
paths-ignore:
- "**.md"
- ".git**" # .gitignore, .gitworkflow
- "skel/**"
pull_request:
workflow_dispatch:
# Run weekly
schedule:
- cron: "0 0 * * 0"
jobs:
ci-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup Emacs (Windows)
run: |
choco install emacs
- name: Show Emacs version
run: |
emacs --version
- name: Running MinEmacs with all modules
run: |
$env:HOME = "D:\a\minemacs\"
$env:MINEMACSDIR = "D:\a\minemacs\.github\workflows\scripts\minemacs-all.d\"
emacs --no-window-system --batch --script .github\workflows\scripts\ci-init.el
- name: Running MinEmacs in always demand mode
run: |
echo "Loading Emacs with MINEMACS_ALWAYS_DEMAND"
$env:HOME = "D:\a\minemacs\"
$env:MINEMACS_ALWAYS_DEMAND = "1"
emacs --no-window-system --batch --script .github\workflows\scripts\ci-init.el