File tree Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 33
33
34
34
- name : Unit test
35
35
run : make xcode/test
36
+ windows :
37
+ runs-on : windows-latest
38
+ steps :
39
+ - name : Checkout last commit
40
+ uses : actions/checkout@v2
41
+ with :
42
+ fetch-depth : 0
43
+ submodules : " recursive"
44
+
45
+ - name : Install dependency
46
+ run : .\action-install-windows.bat
47
+
48
+ - name : Unit test
49
+ run : .\build.bat test
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
setlocal
2
2
3
- call appveyor_build_boost .bat
3
+ call action-build-boost .bat
4
4
if errorlevel 1 goto error
5
5
6
- call appveyor_build_thirdparty .bat
6
+ call action-build-thirdparty .bat
7
7
if errorlevel 1 goto error
8
8
9
9
if defined RIME_PLUGINS (
@@ -24,7 +24,7 @@ echo "plugin: %slug%"
24
24
set plugin_project = %slug:*/ =%
25
25
set plugin_dir = plugins/%plugin_project:librime- =%
26
26
git clone --depth 1 " https://github.com/%slug% .git" %plugin_dir%
27
- if exist %plugin_dir% \appveyor .install.bat (
28
- call %plugin_dir% \appveyor .install.bat
27
+ if exist %plugin_dir% \action .install.bat (
28
+ call %plugin_dir% \action .install.bat
29
29
)
30
30
exit /b
You can’t perform that action at this time.
0 commit comments