Skip to content

Commit

Permalink
Add debugging to release.sh for linux ucs2
Browse files Browse the repository at this point in the history
It looks like the bootstrap part now works completely as intended! It's consistently using UCS2.

But the release script is failing for some reason. Turn on debugging to wake up to hopefully some insight tomorrow morning..
  • Loading branch information
Eric-Arellano committed Feb 27, 2019
1 parent 4cb6cae commit efaae09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ py27_linux_build_wheels_ucs2: &py27_linux_build_wheels_ucs2
-v "${HOME}:/travis/home"
-v "${TRAVIS_BUILD_DIR}:/travis/workdir"
travis_ci_py27_ucs2:latest
sh -c "PEX_VERBOSE=9 ./build-support/bin/ci.sh -2b && RUN_PANTS_FROM_PEX=1 ./build-support/bin/release.sh -n"
sh -c "PEX_VERBOSE=9 ./build-support/bin/ci.sh -2b && RUN_PANTS_FROM_PEX=1 PEX_VERBOSE=9 ./build-support/bin/release.sh -n"

py27_linux_build_wheels_ucs4: &py27_linux_build_wheels_ucs4
<<: *py27_linux_build_wheels_no_ucs
Expand Down
2 changes: 1 addition & 1 deletion build-support/bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function run_pex27() {

curl -sSL "${PEX_DOWNLOAD_PREFIX}/v${PEX_VERSION}/${PEX_PEX}" > "${pex}"
chmod +x "${pex}"
"${pex}" "$@"
"${pex}" -vvvvvvvvv "$@"
)
}

Expand Down
2 changes: 1 addition & 1 deletion build-support/travis/travis.yml.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ py27_linux_build_wheels_ucs2: &py27_linux_build_wheels_ucs2
-v "${HOME}:/travis/home"
-v "${TRAVIS_BUILD_DIR}:/travis/workdir"
travis_ci_py27_ucs2:latest
sh -c "PEX_VERBOSE=9 ./build-support/bin/ci.sh -2b && RUN_PANTS_FROM_PEX=1 ./build-support/bin/release.sh -n"
sh -c "PEX_VERBOSE=9 ./build-support/bin/ci.sh -2b && RUN_PANTS_FROM_PEX=1 PEX_VERBOSE=9 ./build-support/bin/release.sh -n"
py27_linux_build_wheels_ucs4: &py27_linux_build_wheels_ucs4
<<: *py27_linux_build_wheels_no_ucs
Expand Down

0 comments on commit efaae09

Please sign in to comment.