-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to detect version of Xtensa Rust, reinstalling it #29
Comments
This seems to be related to the code snippet here: where the rustc version is not succeeding for whatever reason |
For further clarification as well the YAML job file is: name: Continuous Integration
on:
push:
paths-ignore:
- "**/README.md"
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
rust-checks:
name: Rust Checks
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
action:
- command: build
args: --release
- command: fmt
args: --all -- --check --color always
- command: clippy
args: --all-features --workspace -- -D warnings
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Rust
uses: esp-rs/[email protected]
with:
default: true
buildtargets: esp32
ldproxy: false
- name: Enable caching
uses: Swatinem/rust-cache@v2
- name: Run command
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }} and the used command is |
Do you have |
The full log is attached with associated external warnings:
|
Are you behind a limited network?? Have you tried running the workflow in GH Actions? |
Whenever I try to use the default action from the ESP no-std template with
act
I keep running into the repeated issue:This is even after I specify a version in the YAML file such as
version: "1.82.0.3"
or earlier or leave it undefined. Any ideas on what's causing this or how to solve it?The text was updated successfully, but these errors were encountered: