Skip to content

Commit e058c76

Browse files
syamgksurajnarwade
authored andcommitted
add step to compress before publishing artifacts to appveyor (#1029)
add step to compress before publishing artifacts to appveyor
1 parent 6a39ebd commit e058c76

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

appveyor.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,18 @@ test_script:
3232
build_script:
3333
- make cross
3434

35+
after_test:
36+
- ps : 7z a -tgzip odo-linux-amd64.gz dist\bin\linux-amd64\odo
37+
- ps : 7z a -tgzip odo-linux-arm.gz dist\bin\linux-arm\odo
38+
- ps : 7z a -tgzip odo-darwin-amd64.gz dist\bin\darwin-amd64\odo
39+
- ps : 7z a -tgzip odo-windows-amd64.gz dist\bin\windows-amd64\odo.exe
40+
3541
artifacts:
36-
- path: dist\bin\linux-amd64\odo
42+
- path: odo-linux-amd64.gz
3743
name: Linux-amd64 binary
38-
- path: dist\bin\linux-arm\odo
44+
- path: odo-linux-arm.gz
3945
name: Linux-arm binary
40-
- path: dist\bin\darwin-amd64\odo
46+
- path: odo-darwin-amd64.gz
4147
name: OS-X binary
42-
- path: dist\bin\windows-amd64\odo.exe
48+
- path: odo-windows-amd64.gz
4349
name: Windows-amd64 binary

0 commit comments

Comments
 (0)