File tree 1 file changed +11
-12
lines changed
1 file changed +11
-12
lines changed Original file line number Diff line number Diff line change 1
1
name : Windows Build & Test
2
2
3
+ defaults :
4
+ run :
5
+ shell : bash
6
+ working-directory : C:\Dreamweave
7
+
3
8
on :
4
9
push :
5
10
branches :
15
20
env :
16
21
BUILD_TYPE : Release
17
22
GIT_TERMINAL_PROMPT : 0
18
- working-directory : C:\Dreamweave
19
23
20
24
jobs :
21
25
Windows :
26
30
27
31
steps :
28
32
- name : Clone
29
- shell : bash
30
33
working-directory : C:\
31
34
run : |
32
35
git clone https://github.com/DreamWeave-MP/Dreamweave.git
@@ -58,36 +61,32 @@ jobs:
58
61
59
62
- name : Install Building Dependencies
60
63
if : steps.cache-WinDeps.outputs.cache-hit != 'true'
61
- shell : bash
62
- working-directory : ${{ env.working-directory }}
63
64
run : |
65
+ pwd
66
+ ls -R
64
67
curl -o CrabNet.7z -L https://github.com/DreamWeave-MP/CrabNet/releases/download/Stable-CI/CrabNet-${{ runner.os }}-${{ matrix.BUILD_TYPE }}.7z
65
68
7z x -y CrabNet.7z -oextern/raknet
66
- C:/Dreamweave/ CI/before_script.msvc.sh -C -V -N -k -p Win64 -v 2022
69
+ CI/before_script.msvc.sh -C -V -N -k -p Win64 -v 2022
67
70
68
71
- name : Configure
69
72
if : steps.cache-WinDeps.outputs.cache-hit == 'true'
70
- shell : bash
71
- working-directory : ${{ env.working-directory }}
72
73
run : |
74
+ pwd
75
+ ls -R
73
76
C:/Dreamweave/CI/before_script.msvc.sh -C -V -N -k -p Win64 -v 2022 -d -e
74
77
75
78
- name : Build
76
- shell : bash
77
- working-directory : ${{ env.working-directory }}
78
79
run : |
79
80
cd MSVC2022_64_Ninja
80
81
source activate_msvc.sh
81
82
ninja -f build-${{ matrix.BUILD_TYPE }}.ninja
82
83
83
84
84
85
- name : Package
85
- shell : bash
86
- working-directory : ${{ env.working-directory }}
87
86
run : CI/make_package.msvc.sh ${{ matrix.BUILD_TYPE }}
88
87
89
88
- name : Upload Artifact
90
89
uses : actions/upload-artifact@v3
91
90
with :
92
- path : ${{ env.working-directory }} /dreamweave-build
91
+ path : C:/Dreamweave /dreamweave-build
93
92
name : dreamweave_windows-${{ matrix.BUILD_TYPE }}
You can’t perform that action at this time.
0 commit comments