-
Notifications
You must be signed in to change notification settings - Fork 17
41 lines (39 loc) · 1.07 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
37
38
39
40
41
name: CI Windows
on:
push:
paths-ignore:
- "cog.toml"
- "**.md"
- "skel/**"
- "assets/**"
- "docs/**"
- "modules/obsolete/**"
- ".gitignore/workflows/cocogitto.yaml"
- ".gitignore/workflows/jekyll-gh-pages.yaml"
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:MINEMACS_LOAD_ALL_MODULES = "1"
emacs --no-window-system --batch --script .github\workflows\scripts\ci-init.el
- name: Running MinEmacs in daemon mode
run: |
echo "Loading Emacs in daemon mode"
$env:MINEMACS_LOAD_ALL_MODULES = "1"
emacs --daemon --script .github\workflows\scripts\ci-init.el
echo "Finished"