We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a39ebd commit e058c76Copy full SHA for e058c76
appveyor.yml
@@ -32,12 +32,18 @@ test_script:
32
build_script:
33
- make cross
34
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
+
41
artifacts:
- - path: dist\bin\linux-amd64\odo
42
+ - path: odo-linux-amd64.gz
43
name: Linux-amd64 binary
- - path: dist\bin\linux-arm\odo
44
+ - path: odo-linux-arm.gz
45
name: Linux-arm binary
- - path: dist\bin\darwin-amd64\odo
46
+ - path: odo-darwin-amd64.gz
47
name: OS-X binary
- - path: dist\bin\windows-amd64\odo.exe
48
+ - path: odo-windows-amd64.gz
49
name: Windows-amd64 binary
0 commit comments