# HG changeset patch # User Pierre-Yves David # Date 2020-11-29 14:17:14 # Node ID 3302584ac0c7aa8908e569d3cfeae3c69acf15e2 # Parent 46a16b2c082d814ebc175b657716904517593542 heptapod-ci: do not publish changeset when doing the local clone Otherwise, checks and script relying on some changeset being draft fails. Differential Revision: https://phab.mercurial-scm.org/D9461 diff --git a/contrib/heptapod-ci.yml b/contrib/heptapod-ci.yml --- a/contrib/heptapod-ci.yml +++ b/contrib/heptapod-ci.yml @@ -6,7 +6,7 @@ image: registry.heptapod.net/mercurial/c # The runner made a clone as root. # We make a new clone owned by user used to run the step. before_script: - - hg clone . /tmp/mercurial-ci/ --noupdate + - hg clone . /tmp/mercurial-ci/ --noupdate --config phases.publish=no - hg -R /tmp/mercurial-ci/ update `hg log --rev '.' --template '{node}'` - cd /tmp/mercurial-ci/rust/rhg - cargo build