mirror of
https://github.com/docker/compose.git
synced 2025-07-26 07:04:32 +02:00
Add publish to bintray step to appveyor.yml
Remove Set-PSDebug -trace to prevent the 9000+ lines of debug output from spamming the logs on appveyor. Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
parent
9ce1884925
commit
0e9ec8aa74
12
appveyor.yml
12
appveyor.yml
@ -9,12 +9,20 @@ install:
|
|||||||
# Build the binary after tests
|
# Build the binary after tests
|
||||||
build: false
|
build: false
|
||||||
|
|
||||||
|
environment:
|
||||||
|
BINTRAY_USER: "docker-compose-roleuser"
|
||||||
|
BINTRAY_PATH: "docker-compose/master/windows/master/docker-compose-Windows-x86_64.exe"
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- "tox -e py27,py34 -- tests/unit"
|
- "tox -e py27,py34 -- tests/unit"
|
||||||
|
|
||||||
after_test:
|
|
||||||
- ps: ".\\script\\build-windows.ps1"
|
- ps: ".\\script\\build-windows.ps1"
|
||||||
|
|
||||||
|
deploy_script:
|
||||||
|
- "curl -sS
|
||||||
|
-u \"%BINTRAY_USER%:%BINTRAY_API_KEY%\"
|
||||||
|
-X PUT \"https://api.bintray.com/content/%BINTRAY_PATH%?override=1&publish=1\"
|
||||||
|
--data-binary @dist\\docker-compose-Windows-x86_64.exe"
|
||||||
|
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: .\dist\docker-compose-Windows-x86_64.exe
|
- path: .\dist\docker-compose-Windows-x86_64.exe
|
||||||
name: "Compose Windows binary"
|
name: "Compose Windows binary"
|
||||||
|
@ -29,7 +29,6 @@
|
|||||||
# .\script\build-windows.ps1
|
# .\script\build-windows.ps1
|
||||||
|
|
||||||
$ErrorActionPreference = "Stop"
|
$ErrorActionPreference = "Stop"
|
||||||
Set-PSDebug -trace 1
|
|
||||||
|
|
||||||
# Remove virtualenv
|
# Remove virtualenv
|
||||||
if (Test-Path venv) {
|
if (Test-Path venv) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user