浏览代码

Store build as artifact in appveyor

7z is already available in path in appveyor
zip the build .exe files and store them ( appveyor retains for ~6 months)

(cherry picked from commit 7ae70625f38492072818e674e6db6ec8a21c6085)
Ashesh 5 年之前
父节点
当前提交
df87ae6eb8
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      .appveyor.yml

+ 8 - 0
.appveyor.yml

@@ -30,3 +30,11 @@ before_build:
 
 build_script:
   - scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% debug_symbols=no verbose=yes progress=no gdnative_wrapper=yes
+
+after_build:
+  - 7z a godot_build.zip bin\*.exe
+
+artifacts:
+  - path: godot_build.zip
+    name: Build
+    type: zip