Skip to content

Commit

Permalink
i dont get why it is not running the after deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
camalot committed Apr 4, 2016
1 parent c2f54b3 commit ac53c7d
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2.0.{build}
skip_tags: true
pull_requests:
do_not_increment_build_number: true
skip_tags: true
image: Visual Studio 2015
environment:
MADB_PFX_KEY:
Expand All @@ -16,19 +16,31 @@ install:
before_build:
- ps: >-
$rootLocation = ((Get-Item Env:\APPVEYOR_BUILD_FOLDER).Value);
$trunk = "$rootLocation\trunk\Managed.AndroidDebugBridge";
$ignore = Set-Location $trunk;
.\Build\appveyor.before-build.ps1
$ignore = Set-Location $rootLocation;
build:
project: trunk\Managed.AndroidDebugBridge\Build\BuildAll.msbuild
verbosity: detailed
after_build:
- ps: >-
$rootLocation = ((Get-Item Env:\APPVEYOR_BUILD_FOLDER).Value);
$trunk = "$rootLocation\trunk\Managed.AndroidDebugBridge";
$ignore = Set-Location $trunk;
.\Build\appveyor.after-build.ps1
$ignore = Set-Location $rootLocation;
artifacts:
- path: '**\Managed.Adb.*.zip'
Expand All @@ -38,9 +50,13 @@ artifacts:
before_deploy:
- ps: >-
$rootLocation = ((Get-Item Env:\APPVEYOR_BUILD_FOLDER).Value);
$trunk = "$rootLocation\trunk\Managed.AndroidDebugBridge";
$ignore = Set-Location $trunk;
.\Build\appveyor.before-deployment.ps1
$ignore = Set-Location $rootLocation;
deploy:
- provider: GitHub
Expand All @@ -63,15 +79,19 @@ deploy:
after_deploy:
- ps: >-
$rootLocation = ((Get-Item Env:\APPVEYOR_BUILD_FOLDER).Value);
$trunk = "$rootLocation\trunk\Managed.AndroidDebugBridge";
$ignore = Set-Location $trunk;
.\Build\appveyor.after-deployment.ps1
$ignore = Set-Location $rootLocation;
notifications:
- provider: Slack
auth_token:
secure: dEyWFeGEKdMmajrfGAYOGhWPEpivj1DiWu1xbbngPVcDW8vucg7JvWtJWTdARJ2bLedEg009P1o0JupLLx69Fg==
channel: notifications
on_build_success: true
on_build_failure: true
on_build_status_changed: true
on_build_failure: true
on_build_status_changed: false

0 comments on commit ac53c7d

Please sign in to comment.