Skip to content

Commit

Permalink
[CI] Fix source path
Browse files Browse the repository at this point in the history
  • Loading branch information
AchimTuran committed Mar 25, 2016
1 parent e129eac commit 5cf12e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -38,6 +38,6 @@ before_script:
- cd $TRAVIS_BUILD_DIR/..
- git clone --depth=1 https://github.com/xbmc/xbmc.git
- cd adsp.basic && mkdir build && cd build
- cmake -DADDONS_TO_BUILD=adsp.basic -DADDON_SRC_PREFIX=../.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../../xbmc/addons -DPACKAGE_ZIP=1 ../../xbmc/project/cmake/addons
- cmake -DADDONS_TO_BUILD=adsp.basic -DADDON_SRC_PREFIX=../../../.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../../xbmc/addons -DPACKAGE_ZIP=1 ../../xbmc/project/cmake/addons

script: make
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -71,7 +71,7 @@ build_script:
- cd "%addon_id%"
- mkdir build
- cd build
- cmake -G "NMake Makefiles" -DADDONS_TO_BUILD="%addon_id%" -DCMAKE_BUILD_TYPE="%CONFIG%" -DADDON_SRC_PREFIX="../.." -DCMAKE_INSTALL_PREFIX="../../xbmc/addons" -DPACKAGE_ZIP=1 "../../xbmc/project/cmake/addons"
- cmake -G "NMake Makefiles" -DADDONS_TO_BUILD="%addon_id%" -DCMAKE_BUILD_TYPE="%CONFIG%" -DADDON_SRC_PREFIX="../../../.." -DCMAKE_INSTALL_PREFIX="../../xbmc/addons" -DPACKAGE_ZIP=1 "../../xbmc/project/cmake/addons"
- cmake --build "%cd%" --target "%addon_id%"

# use this commands for zip package creation, which can be used to upload it
Expand Down

0 comments on commit 5cf12e8

Please sign in to comment.