We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaef3a2 commit e5c35d9Copy full SHA for e5c35d9
3 files changed
.github/workflows/deploy.yml
@@ -64,9 +64,8 @@ jobs:
64
cd scripts
65
python gen_build.py
66
cd ../src
67
- build.bat -c deploy
68
- cd ..
69
- if not exist pilotlight/pilotlight.pyd exit 1
+ call build.bat -c deploy
+ if %ERRORLEVEL% NEQ 0 exit 1
70
71
- name: Build Wheel
72
shell: cmd
@@ -140,9 +139,7 @@ jobs:
140
139
python3 gen_build.py
141
142
chmod +x build.sh
143
- ./build.sh -c deploy
144
145
- test -f ./pilotlight/pilotlight.so || exit 1
+ ./build.sh -c deploy || exit 1
146
147
148
run: |
@@ -205,9 +202,7 @@ jobs:
205
202
206
203
207
204
208
209
210
211
212
213
0 commit comments