Skip to content

Commit

Permalink
Modify build Jenkins script to follow C script changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoltan Varga committed Mar 27, 2017
1 parent 6f050d1 commit b451ded
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jenkins/linux_python2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build_root=$(cd "$(dirname "$0")/.." && pwd)
cd $build_root

# -- Python C wrapper --
./build_all/linux/build.sh --use-websockets $*
./build_all/linux/build.sh $*
[ $? -eq 0 ] || exit $?

python2 ./device/tests/iothub_client_e2e.py
Expand Down
2 changes: 1 addition & 1 deletion jenkins/linux_python3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build_root=$(cd "$(dirname "$0")/.." && pwd)
cd $build_root

# -- Python C wrapper --
./build_all/linux/build.sh --build-python 3.4 --use-websockets $*
./build_all/linux/build.sh --build-python 3.4 $*
[ $? -eq 0 ] || exit $?

python3 ./service/tests/iothub_service_client_e2e.py
Expand Down
2 changes: 1 addition & 1 deletion jenkins/windows_python.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ REM -- Python --
cd %build-root%\build_all\windows
if "%1" equ "--use-cmake" (
echo Building client using cmake
call build_client.cmd --use-websockets %2 %3
call build_client.cmd %2 %3
) else (
echo Building client using Nuget packages
call build.cmd --run-ut
Expand Down

0 comments on commit b451ded

Please sign in to comment.