infra: Revert CIPD autoconf It turned out that using CIPD autoconf doesn't seem straightforward. Let's just wait for the new image with pre-installed autoconf to be rolled out. No-Try: true Bug: 462546993 Change-Id: I360fbee121eca56a93c1e42257181dd790dffd9d Reviewed-on: https://gn-review.googlesource.com/c/gn/+/20440 Reviewed-by: Takuto Ikuta <tikuta@google.com> Commit-Queue: Junji Watanabe <jwata@google.com>
diff --git a/infra/recipes/gn.py b/infra/recipes/gn.py index ea95e35..f4723bd 100644 --- a/infra/recipes/gn.py +++ b/infra/recipes/gn.py
@@ -200,18 +200,7 @@ 'fetch', ['git', 'fetch', JEMALLOC_GIT_URL, 'refs/tags/' + JEMALLOC_TAG, '--depth=1']) api.step('checkout', ['git', 'checkout', 'FETCH_HEAD']) - - # TODO: We can rely on pre-installed autoconf after the following - # change gets rolled out. https://crrev.com/c/7172045 - autoconf_path = api.cipd.ensure_tool( - 'infra/3pp/tools/autoconf/${platform}', - "version:3@2.71.chromium.1", - executable_path='bin/autoconf') - # Add the autoconf bin directory to be able to find other - # executables. - with api.context( - env_prefixes={'PATH': [api.path.dirname(autoconf_path)]}): - api.step('autoconf', [autoconf_path]) + api.step('autoconf', ['autoconf']) for platform in all_config_platforms: # Convert target architecture and os to jemalloc format.