@@ -26,20 +26,27 @@ jobs:
26
26
with :
27
27
dotnet-version : ${{ matrix.dotnet }}
28
28
- uses : actions/checkout@v2
29
- - uses : conao3/setup-cask@master
29
+ - name : Install Eldev
30
+ run : curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh
30
31
- name : Show dotnet sdks
31
32
run : dotnet --list-sdks
32
33
- name : Show dotnet version
33
34
run : dotnet --info
34
35
- name : Test
35
- run : make test
36
+ run : |
37
+ echo "Archives:"
38
+ eldev archives
39
+ echo "Dependencies:"
40
+ eldev -v dependencies
41
+ echo "Testing:"
42
+ eldev -dtT test
36
43
windows-build :
37
44
runs-on : windows-latest
38
45
strategy :
39
46
fail-fast : false
40
47
steps :
41
48
- uses : actions/setup-dotnet@v1
42
- - name : Install Cask/ scoop-emacs
49
+ - name : Install scoop-emacs
43
50
run : |
44
51
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
45
52
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
@@ -49,15 +56,13 @@ jobs:
49
56
scoop install make
50
57
echo "$env:PATH" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
51
58
- uses : actions/checkout@v2
52
- - name : Test # FIXME: cask hack
59
+ - name : Install Eldev
60
+ run : curl.exe -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev.bat | cmd /Q
61
+ - name : Test
53
62
run : |
54
- git clone https://github.com/tom-bowles/cask cask-windows
55
- Remove-Item -recurse .\cask-windows\test
56
- dotnet restore test/Test1
57
- Invoke-WebRequest -Uri https://raw.githubusercontent.com/joaotavora/eglot/master/eglot-tests.el -OutFile eglot-tests.el
58
- Start .\Cask-windows\bin\cask.bat -ArgumentList install -NoNewWindow -Wait
59
- Start .\Cask-windows\bin\cask.bat -ArgumentList build -NoNewWindow -Wait
60
- Start .\Cask-windows\bin\cask.bat -ArgumentList "exec buttercup -L . -L test --traceback full" -NoNewWindow -Wait
61
-
62
-
63
-
63
+ echo "Archives:"
64
+ ~/.local/bin/eldev.bat archives
65
+ echo "Dependencies:"
66
+ ~/.local/bin/eldev.bat dependencies
67
+ echo "Testing:"
68
+ ~/.local/bin/eldev.bat -p -dtT test
0 commit comments