Skip to content

Re-enable Espressif (merge once upstream is fixed) #566

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

Merged
merged 1 commit into from
Jan 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,12 @@ jobs:
TARGET: x86_64-unknown-linux-gnu
TRAVIS_OS_NAME: linux

# Espressif testing disabled as xensa-lx 0.4.0 is now broken on nightly,
# see https://github.com/esp-rs/xtensa-lx/issues/14
# # Use nightly for architectures which don't support stable
# - rust: nightly
# experimental: true
# vendor: Espressif
# TARGET: x86_64-unknown-linux-gnu
# TRAVIS_OS_NAME: linux
# Use nightly for architectures which don't support stable
- rust: nightly
experimental: true
vendor: Espressif
TARGET: x86_64-unknown-linux-gnu
TRAVIS_OS_NAME: linux

# OSX
- rust: stable
Expand Down
8 changes: 4 additions & 4 deletions ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -609,12 +609,12 @@ main() {
echo 'version = "1.0.0"' >> $td/Cargo.toml

echo '[dependencies.xtensa-lx]' >> $td/Cargo.toml
echo 'version = "0.4.0"' >> $td/Cargo.toml
echo 'features = ["lx6"]' >> $td/Cargo.toml
echo 'version = "0.6.0"' >> $td/Cargo.toml
echo 'features = ["esp32"]' >> $td/Cargo.toml

echo '[dependencies.xtensa-lx-rt]' >> $td/Cargo.toml
echo 'version = "0.7.0"' >> $td/Cargo.toml
echo 'features = ["lx6"]' >> $td/Cargo.toml
echo 'version = "0.8.0"' >> $td/Cargo.toml
echo 'features = ["esp32"]' >> $td/Cargo.toml

test_svd_for_target xtensa-lx https://raw.githubusercontent.com/esp-rs/esp32/master/svd/esp32.svd
;;
Expand Down