Title: Executable `rustup` not found · Issue #2823 · pre-commit/pre-commit · GitHub
Open Graph Title: Executable `rustup` not found · Issue #2823 · pre-commit/pre-commit
X Title: Executable `rustup` not found · Issue #2823 · pre-commit/pre-commit
Description: search you tried in the issue tracker Executable rustup not found describe your issue Since pre-commit 3.2.0 our GitHub workflow is broken. This ins one of the last working runs: https://github.com/mixxxdj/mixxx/actions/runs/4448394360/j...
Open Graph Description: search you tried in the issue tracker Executable rustup not found describe your issue Since pre-commit 3.2.0 our GitHub workflow is broken. This ins one of the last working runs: https://github.com...
X Description: search you tried in the issue tracker Executable rustup not found describe your issue Since pre-commit 3.2.0 our GitHub workflow is broken. This ins one of the last working runs: https://github.com...
Opengraph URL: https://github.com/pre-commit/pre-commit/issues/2823
X: @github
Domain: github.com
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Executable `rustup` not found","articleBody":"### search you tried in the issue tracker\n\nExecutable `rustup` not found\n\n### describe your issue\n\nSince pre-commit 3.2.0 our GitHub workflow is broken. \r\n\r\nThis ins one of the last working runs:\r\nhttps://github.com/mixxxdj/mixxx/actions/runs/4448394360/jobs/7811151308\r\nDownloading pre_commit-3.1.1-py2.py3-none-any.whl (202 kB)\r\n\r\nThis is a failing one:\r\nhttps://github.com/mixxxdj/mixxx/actions/runs/4451827087/jobs/7824682752\r\nDownloading pre_commit-3.2.0-py2.py3-none-any.whl (202 kB)\r\n\r\n\n\n### pre-commit --version\n\npre-commit 3.2.0\n\n### .pre-commit-config.yaml\n\n```yaml\n# This is the configuration file for the pre-commit framework, a simple way\r\n# to manage, install and run git hooks to catch common problems early on.\r\n# See https://pre-commit.com/ for details.\r\n#\r\n# If you have Python \u003e= 3.7 and python-pip installed, just run:\r\n#\r\n# $ pip install --user pre-commit\r\n# $ git clone https://github.com/your-fork-of/mixxx.git\r\n# $ cd mixxx\r\n# $ pre-commit install\r\n# $ pre-commit install -t pre-push\r\n#\r\n# It will now run relevant hooks automatically on every `git commit` or\r\n# `git push` in the mixxx git repository.\r\n#\r\n# If you have a problems with a particular hook, you can use the `$SKIP`\r\n# environment variable to disable hooks:\r\n#\r\n# $ SKIP=clang-format,end-of-file-fixer git commit\r\n#\r\n# This can also be used to separate logic changes and autoformatting into\r\n# two subsequent commits.\r\n#\r\n# Using the `$SKIP` var is preferable to using `git commit --no-verify`\r\n# because it won't prevent catching other, unrelated issues.\r\n\r\n# _anlz.h/_pdb.h: Header files generated by Kaitai Struct\r\nexclude: ^(lib/|src/test/.*data/).*|res/translations/.*\\.ts|src/.*_(anlz|pdb)\\.h$\r\nminimum_pre_commit_version: 2.21.0\r\ndefault_language_version:\r\n python: python3\r\n rust: 1.64.0\r\nrepos:\r\n - repo: https://github.com/pre-commit/pre-commit-hooks\r\n rev: v4.3.0\r\n hooks:\r\n - id: fix-byte-order-marker\r\n exclude: ^.*(\\.cbproj|\\.groupproj|\\.props|\\.sln|\\.vcxproj|\\.vcxproj.filters)$\r\n - id: check-case-conflict\r\n - id: check-json\r\n - id: check-merge-conflict\r\n - id: check-xml\r\n - id: check-yaml\r\n exclude: ^\\.clang-format$\r\n - id: end-of-file-fixer\r\n - id: mixed-line-ending\r\n - id: trailing-whitespace\r\n exclude: \\.(c|cc|cxx|cpp|frag|glsl|h|hpp|hxx|ih|ispc|ipp|java|js|m|mm|proto|vert)$\r\n - id: no-commit-to-branch\r\n # protect main and any branch that has a semver-like name\r\n args: [-b, main, -p, '^\\d+\\.\\d+(?:\\.\\d+)?$']\r\n - repo: https://github.com/codespell-project/codespell\r\n rev: v2.2.2\r\n hooks:\r\n - id: codespell\r\n args:\r\n [\r\n --exclude-file,\r\n .codespellignorelines,\r\n --ignore-words,\r\n .codespellignore,\r\n --ignore-regex,\r\n \"\\\\W(?:m_p*(?=[A-Z])|m_(?=\\\\w)|pp*(?=[A-Z])|k(?=[A-Z])|s_(?=\\\\w))\",\r\n ]\r\n exclude: ^(packaging/wix/LICENSE.rtf|src/dialog/dlgabout\\.cpp|.*\\.(?:pot?|ts|wxl|svg))$\r\n - repo: https://github.com/pre-commit/mirrors-eslint\r\n rev: v8.25.0\r\n hooks:\r\n - id: eslint\r\n args: [--fix, --report-unused-disable-directives]\r\n files: \\.m?js$\r\n types: [file]\r\n stages:\r\n - commit\r\n - manual\r\n additional_dependencies:\r\n - eslint@^v8.6.0\r\n - eslint-plugin-jsdoc@^v37.5.0\r\n - repo: local\r\n hooks:\r\n - id: clang-format\r\n name: clang-format\r\n description: \"Run clang-format in two passes (reformat, then break long lines)\"\r\n entry: python tools/clang_format.py\r\n require_serial: true\r\n stages:\r\n - commit\r\n - manual\r\n language: python\r\n additional_dependencies:\r\n - clang-format==14.0.6\r\n files: \\.(c|cc|cxx|cpp|frag|glsl|h|hpp|hxx|ih|ispc|ipp|java|m|mm|proto|vert)$\r\n - repo: https://github.com/psf/black\r\n rev: 22.10.0\r\n hooks:\r\n - id: black\r\n files: ^tools/.*$\r\n - repo: https://github.com/pycqa/flake8\r\n rev: \"5.0.4\"\r\n hooks:\r\n - id: flake8\r\n files: ^tools/.*$\r\n types: [text, python]\r\n - repo: https://github.com/shellcheck-py/shellcheck-py\r\n rev: v0.8.0.4\r\n hooks:\r\n - id: shellcheck\r\n - repo: https://github.com/DavidAnson/markdownlint-cli2\r\n rev: v0.5.1\r\n hooks:\r\n - id: markdownlint-cli2\r\n - repo: https://github.com/python-jsonschema/check-jsonschema\r\n rev: 0.18.3\r\n hooks:\r\n - id: check-github-workflows\r\n - repo: https://github.com/pre-commit/mirrors-prettier\r\n rev: v2.7.1\r\n hooks:\r\n - id: prettier\r\n types: [yaml]\r\n - repo: https://github.com/qarmin/qml_formatter.git\r\n rev: 0.2.0\r\n hooks:\r\n - id: qml_formatter\r\n - repo: local\r\n hooks:\r\n - id: qsscheck\r\n name: qsscheck\r\n description: Run qsscheck to detect broken QSS.\r\n entry: python tools/qsscheck.py\r\n args: [.]\r\n pass_filenames: false\r\n language: python\r\n additional_dependencies:\r\n - tinycss==0.4\r\n types: [text]\r\n files: ^.*\\.qss$\r\n stages:\r\n - commit\r\n - manual\r\n - id: changelog\r\n name: changelog\r\n description: Add missing links to changelog.\r\n entry: python tools/changelog.py\r\n language: python\r\n types: [text]\r\n files: ^CHANGELOG.md$\r\n - id: qmllint\r\n name: qmllint\r\n entry: qmllint\r\n pass_filenames: true\r\n require_serial: true\r\n language: system\r\n types: [text]\r\n files: ^.*\\.qml$\r\n - id: metainfo\r\n name: metainfo\r\n description: Update AppStream metainfo releases from CHANGELOG.md.\r\n entry: python tools/update_metainfo.py\r\n pass_filenames: false\r\n language: python\r\n additional_dependencies:\r\n - beautifulsoup4==4.11.1\r\n - lxml==4.9.1\r\n - Markdown==3.4.1\r\n types: [text]\r\n files: ^(CHANGELOG\\.md|res/linux/org\\.mixxx\\.Mixxx\\.metainfo.xml)$\n```\n\n\n### ~/.cache/pre-commit/pre-commit.log (if present)\n\n2023-03-18T11:16:24.8724175Z [INFO]\u001B[m Initializing environment for https://github.com/pre-commit/pre-commit-hooks.\r\n2023-03-18T11:16:25.3378859Z [INFO]\u001B[m Initializing environment for https://github.com/codespell-project/codespell.\r\n2023-03-18T11:16:25.8998370Z [INFO]\u001B[m Initializing environment for https://github.com/pre-commit/mirrors-eslint.\r\n2023-03-18T11:16:26.3373046Z [INFO]\u001B[m Initializing environment for https://github.com/pre-commit/mirrors-eslint:eslint@^v8.6.0,eslint-plugin-jsdoc@^v37.5.0.\r\n2023-03-18T11:16:26.7769485Z [INFO]\u001B[m Initializing environment for local:clang-format==14.0.6.\r\n2023-03-18T11:16:26.7823306Z [INFO]\u001B[m Initializing environment for https://github.com/psf/black.\r\n2023-03-18T11:16:27.4353970Z [INFO]\u001B[m Initializing environment for https://github.com/pycqa/flake8.\r\n2023-03-18T11:16:27.9719090Z [INFO]\u001B[m Initializing environment for https://github.com/shellcheck-py/shellcheck-py.\r\n2023-03-18T11:16:28.4303322Z [INFO]\u001B[m Initializing environment for https://github.com/DavidAnson/markdownlint-cli2.\r\n2023-03-18T11:16:28.9106462Z [INFO]\u001B[m Initializing environment for https://github.com/python-jsonschema/check-jsonschema.\r\n2023-03-18T11:16:29.5219475Z [INFO]\u001B[m Initializing environment for https://github.com/pre-commit/mirrors-prettier.\r\n2023-03-18T11:16:29.9463012Z [INFO]\u001B[m Initializing environment for https://github.com/pre-commit/mirrors-prettier:prettier@2.7.1.\r\n2023-03-18T11:16:30.3722936Z [INFO]\u001B[m Initializing environment for https://github.com/qarmin/qml_formatter.git.\r\n2023-03-18T11:16:30.7800010Z [INFO]\u001B[m Initializing environment for local:tinycss==0.4.\r\n2023-03-18T11:16:30.7845724Z [INFO]\u001B[m Initializing environment for local.\r\n2023-03-18T11:16:30.7890533Z [INFO]\u001B[m Initializing environment for local:beautifulsoup4==4.11.1,lxml==4.9.1,Markdown==3.4.1.\r\n2023-03-18T11:16:30.7935963Z [INFO]\u001B[m Installing environment for https://github.com/pre-commit/pre-commit-hooks.\r\n2023-03-18T11:16:30.7936430Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:16:30.7937142Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:16:36.1315607Z [INFO]\u001B[m Installing environment for https://github.com/codespell-project/codespell.\r\n2023-03-18T11:16:36.1316105Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:16:36.1316598Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:16:41.0677859Z [INFO]\u001B[m Installing environment for https://github.com/pre-commit/mirrors-eslint.\r\n2023-03-18T11:16:41.0678364Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:16:41.0678749Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:16:52.1967027Z [INFO]\u001B[m Installing environment for local.\r\n2023-03-18T11:16:52.1967972Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:16:52.1968731Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:16:54.9343036Z [INFO]\u001B[m Installing environment for https://github.com/psf/black.\r\n2023-03-18T11:16:54.9343514Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:16:54.9343897Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:16:59.3853467Z [INFO]\u001B[m Installing environment for https://github.com/pycqa/flake8.\r\n2023-03-18T11:16:59.3853994Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:16:59.3854348Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:17:01.9111743Z [INFO]\u001B[m Installing environment for https://github.com/shellcheck-py/shellcheck-py.\r\n2023-03-18T11:17:01.9112317Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:17:01.9112658Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:17:04.9449677Z [INFO]\u001B[m Installing environment for https://github.com/DavidAnson/markdownlint-cli2.\r\n2023-03-18T11:17:04.9450176Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:17:04.9450535Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:17:25.7010838Z [INFO]\u001B[m Installing environment for https://github.com/python-jsonschema/check-jsonschema.\r\n2023-03-18T11:17:25.7011350Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:17:25.7011717Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:17:29.8214983Z [INFO]\u001B[m Installing environment for https://github.com/pre-commit/mirrors-prettier.\r\n2023-03-18T11:17:29.8215477Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:17:29.8215817Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:17:36.7285087Z [INFO]\u001B[m Installing environment for https://github.com/qarmin/qml_formatter.git.\r\n2023-03-18T11:17:36.7285587Z [INFO]\u001B[m Once installed this environment will be reused.\r\n2023-03-18T11:17:36.7285924Z [INFO]\u001B[m This may take a few minutes...\r\n2023-03-18T11:17:37.1457698Z An unexpected error has occurred: CalledProcessError: command: ('rustup', 'toolchain', 'install', '--no-self-update', '1.64.0')\r\n2023-03-18T11:17:37.1458511Z return code: 1\r\n2023-03-18T11:17:37.1458692Z stdout:\r\n2023-03-18T11:17:37.1458924Z Executable `rustup` not found\r\n2023-03-18T11:17:37.1459148Z stderr: (none)\r\n","author":{"url":"https://github.com/daschuer","@type":"Person","name":"daschuer"},"datePublished":"2023-03-20T21:08:07.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":2},"url":"https://github.com/2823/pre-commit/issues/2823"}
| route-pattern | /_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format) |
| route-controller | voltron_issues_fragments |
| route-action | issue_layout |
| fetch-nonce | v2:33286776-a536-7567-84a8-aea72b03e2c4 |
| current-catalog-service-hash | 81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114 |
| request-id | A3C8:2D74E4:126A856:19134F8:6A571822 |
| html-safe-nonce | 99d3b58c4289b41c62d586d32e529d79e2acd3f48f783aebfd24c4b906506d90 |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBM0M4OjJENzRFNDoxMjZBODU2OjE5MTM0Rjg6NkE1NzE4MjIiLCJ2aXNpdG9yX2lkIjoiOTIwMzM0Njg2OTU4NTM4NTUwNiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9 |
| visitor-hmac | 0a665d67fa642d411ac886f8b9caab97d40c32105ef875fdf92222d0c7bf50ab |
| hovercard-subject-tag | issue:1632866609 |
| github-keyboard-shortcuts | repository,issues,commits,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/pre-commit/pre-commit/2823/issue_layout |
| twitter:image | https://opengraph.githubassets.com/386780b0b9c18acd2ea4691099cb2378415b9750a4b6d95faf9db1f957fdebd0/pre-commit/pre-commit/issues/2823 |
| twitter:card | summary_large_image |
| og:image | https://opengraph.githubassets.com/386780b0b9c18acd2ea4691099cb2378415b9750a4b6d95faf9db1f957fdebd0/pre-commit/pre-commit/issues/2823 |
| og:image:alt | search you tried in the issue tracker Executable rustup not found describe your issue Since pre-commit 3.2.0 our GitHub workflow is broken. This ins one of the last working runs: https://github.com... |
| og:image:width | 1200 |
| og:image:height | 600 |
| og:site_name | GitHub |
| og:type | object |
| og:author:username | daschuer |
| hostname | github.com |
| expected-hostname | github.com |
| None | 4e7a7296a3830877cf21a6ad2a972c9e618a48915e03966cf0c53eb08e5aad98 |
| turbo-cache-control | no-preview |
| go-import | github.com/pre-commit/pre-commit git https://github.com/pre-commit/pre-commit.git |
| octolytics-dimension-user_id | 6943086 |
| octolytics-dimension-user_login | pre-commit |
| octolytics-dimension-repository_id | 17689377 |
| octolytics-dimension-repository_nwo | pre-commit/pre-commit |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 17689377 |
| octolytics-dimension-repository_network_root_nwo | pre-commit/pre-commit |
| turbo-body-classes | logged-out env-production page-responsive |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | 2576d1f0198cf1588faf2edf27f1ed120903be10 |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width