File tree 2 files changed +36
-0
lines changed
2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 47
47
./waf.bat configure -T debug
48
48
./waf.bat build
49
49
50
+ build-windows-amd64 :
51
+ runs-on : windows-2019
52
+
53
+ steps :
54
+ - uses : actions/checkout@v2
55
+ - name : Build windows-i386
56
+ run : |
57
+ git submodule init && git submodule update
58
+ ./waf.bat configure -T debug -8
59
+ ./waf.bat build
60
+
50
61
build-dedicated-windows-i386 :
51
62
runs-on : windows-2019
52
63
58
69
./waf.bat configure -T debug -d
59
70
./waf.bat build
60
71
72
+ build-dedicated-windows-amd64 :
73
+ runs-on : windows-2019
74
+
75
+ steps :
76
+ - uses : actions/checkout@v2
77
+ - name : Build dedicated windows-amd64
78
+ run : |
79
+ git submodule init && git submodule update
80
+ ./waf.bat configure -T debug -d -8
81
+ ./waf.bat build
82
+
61
83
build-dedicated-linux-i386 :
62
84
runs-on : ubuntu-18.04
63
85
Original file line number Diff line number Diff line change 40
40
cd out
41
41
$env:Path = "bin";
42
42
./unittest.exe
43
+
44
+ tests-windows-amd64 :
45
+ runs-on : windows-2019
46
+
47
+ steps :
48
+ - uses : actions/checkout@v2
49
+ - name : Run tests windows-amd64
50
+ run : |
51
+ git submodule init && git submodule update
52
+ ./waf.bat configure -T release --tests --prefix=out/ -8
53
+ ./waf.bat install
54
+ cd out
55
+ $env:Path = "bin";
56
+ ./unittest.exe
You can’t perform that action at this time.
0 commit comments