Skip to content

Commit

Permalink
[CI/CD] fix wrong path
Browse files Browse the repository at this point in the history
  • Loading branch information
zhang-ray committed Oct 23, 2018
1 parent 485af24 commit b9b544a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,25 @@ before_build:
#- cmake ..\audio-processing-module
- cmake ..\audio-processing-module\independent_vad\

configuration:
- Release

build:
#project: ..\build\apm.sln
project: ..\build\independent_vad.sln
parallel: true
#verbosity: quiet

after_build:
- xcopy: C:\projects\build\src\Release\vad.dll C:\projects\audio-processing-module\

deploy:
provider: GitHub
auth_token:
secure: PiQDTyaNV3HdYRawTlwyD/bsMbpBg2Kx+/BEUEz9qOasvZlDBmxj3tFB0bNYwXIc
artifact: vad.dll
draft: false
prerelease: false
on:
branch: master # release from master branch only
appveyor_repo_tag: true # deploy on tag push only
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file:
- ./independent_vad-build/vad.so
- ./independent_vad-build/vad.dylib
- ./independent_vad-build/src/vad.so
- ./independent_vad-build/src/vad.dylib
skip_cleanup: true
on:
tags: true

0 comments on commit b9b544a

Please sign in to comment.