12
12
unix-build :
13
13
runs-on : ${{ matrix.os }}
14
14
strategy :
15
+ fail-fast : false
15
16
matrix :
16
17
os : [ubuntu-latest, macos-latest]
17
- emacs : [26.1, 26.2, 26.3, 27.1, 27.2, snapshot]
18
+ experimental : [false]
19
+ emacs : [26.1, 26.2, 26.3, 27.1, 27.2]
20
+ include :
21
+ - emacs : snapshot
22
+ experimental : true
23
+ os : ubuntu-latest
24
+ - emacs : snapshot
25
+ experimental : true
26
+ os : macos-latest
27
+ continue-on-error : ${{ matrix.experimental }}
18
28
19
29
steps :
20
30
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
@@ -40,29 +50,30 @@ jobs:
40
50
run : |
41
51
emacs --version
42
52
make test
43
- windows-build :
44
- runs-on : windows-latest
45
- strategy :
46
- matrix :
47
- emacs : [26.1, 26.2, 26.3, 27.1, 27.2, snapshot]
53
+
54
+ # windows-build:
55
+ # runs-on: windows-latest
56
+ # strategy:
57
+ # matrix:
58
+ # emacs: [26.1, 26.2, 26.3, 27.1, 27.2, snapshot]
48
59
49
- steps :
50
- - uses : actions/checkout@v2
60
+ # steps:
61
+ # - uses: actions/checkout@v2
51
62
52
- - uses : actions/setup-python@v2
53
- with :
54
- python-version : " 3.6"
55
- architecture : " x64"
63
+ # - uses: actions/setup-python@v2
64
+ # with:
65
+ # python-version: "3.6"
66
+ # architecture: "x64"
56
67
57
- - uses : jcs090218/setup-emacs-windows@master
58
- with :
59
- version : ${{ matrix.emacs }}
68
+ # - uses: jcs090218/setup-emacs-windows@master
69
+ # with:
70
+ # version: ${{ matrix.emacs }}
60
71
61
- - uses : conao3/setup-cask@master
62
- with :
63
- version : 0.8.4
72
+ # - uses: conao3/setup-cask@master
73
+ # with:
74
+ # version: 0.8.4
64
75
65
- - name : Run a multi-line script
66
- run : |
67
- emacs --version
68
- make test
76
+ # - name: Run a multi-line script
77
+ # run: |
78
+ # emacs --version
79
+ # make test
0 commit comments