Skip to content

Commit

Permalink
Merge pull request #14 from Finomnis/fix_ci
Browse files Browse the repository at this point in the history
Attempt to fix publish CI
  • Loading branch information
Finomnis committed Jul 22, 2023
2 parents cc497d3 + af1b16a commit f89ef37
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,4 @@ jobs:
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}

- name: Cargo publish
run: cargo publish
run: cargo publish --all-features
10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ categories = ["embedded", "no-std"]

exclude = ["/.gitignore", "/.github/", "/.vscode/"]

[features]
default = []

# Do not use; internally required for Github CI
github_ci = ["teensy4-bsp"]


[dependencies]
imxrt-hal = "0.5.3"
imxrt-ral = "0.5.1"
Expand All @@ -25,6 +32,9 @@ palette = { version = "0.7.2", default-features = false, features = ["libm"] }
# Async reactor, for executing DMA actions
cassette = "0.2.3"

# Additional CI dependencies
teensy4-bsp = { version = "0.4", optional = true }


[dev-dependencies]
cortex-m = "0.7.7"
Expand Down

0 comments on commit f89ef37

Please sign in to comment.