I don't know how to check it works. Can some one review this ? Esteban or Fabio ? You can view, comment on, or merge this pull request online at:https://github.com/OpenSmalltalk/opensmalltalk-vm/pull/225 Commit Summary
File Changes
Patch Links:
— |
Does the — |
In reply to this post by David T Lewis
@fniephaus approved this pull request. In .travis.yml: > @@ -31,6 +31,7 @@ jobs: - env: ARCH="linux32x86" FLAVOR="pharo.cog.spur" HEARTBEAT="threaded" - env: ARCH="linux32x86" FLAVOR="pharo.cog.spur" HEARTBEAT="itimer" - env: ARCH="linux32x86" FLAVOR="pharo.sista.spur" HEARTBEAT="threaded" + - env: ARCH="linux32x86" FLAVOR="pharo.sista.spur" HEARTBEAT="itimer" why is the itimer version needed? In deploy/pharo/filter-exec.sh: > @@ -12,7 +12,7 @@ readonly PR_SHA="${TRAVIS_PULL_REQUEST_SHA:-${APPVEYOR_PULL_REQUEST_HEAD_COMMIT} readonly BRANCH_NAME="${TRAVIS_BRANCH:-${APPVEYOR_REPO_BRANCH}}" readonly TAG_NAME="${TRAVIS_TAG:-${APPVEYOR_REPO_TAG_NAME}}" -if [[ "${FLAVOR}" != "pharo.cog.spur" ]]; then +if ! ([[ "${FLAVOR}" = "pharo.cog.spur" ]] || [[ "${FLAVOR}" = "pharo.sista.spur" ]]); then Line 5 needs to be updated as well ;) — |
In reply to this post by David T Lewis
Let's just merge and we will see if it works. — |
In reply to this post by David T Lewis
Merged #225. — |
Free forum by Nabble | Edit this page |