Skip to content

Commit

Permalink
rm remote feature from default build
Browse files Browse the repository at this point in the history
  • Loading branch information
s5suzuki committed Jan 28, 2025
1 parent 27a315e commit 32586ac
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
- os: windows-latest
- os: macos-latest
- os: ubuntu-latest
- os: ubuntu-latest
features: "remote"
- os: ubuntu-latest
features: "use_meter left_handed"
- os: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ jobs:
- os: windows-latest
- os: macos-latest
- os: ubuntu-latest
- os: ubuntu-latest
features: "remote"
- os: ubuntu-latest
features: "use_meter left_handed"
- os: ubuntu-latest
Expand Down
8 changes: 4 additions & 4 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ dependencies = ["format", "build", "test", "lint"]

[tasks.build]
command = "cargo"
args = ["build", "--workspace", "--features", "remote", "${@}"]
args = ["build", "--workspace", "${@}"]

[tasks.lint]
command = "cargo"
args = ["clippy", "--tests", "--workspace", "--features", "remote", "${@}", "--", "-D", "warnings"]
args = ["clippy", "--tests", "--workspace", "${@}", "--", "-D", "warnings"]

[tasks.doc]
env = { RUSTDOCFLAGS = "--cfg docsrs -D warnings" }
Expand All @@ -32,11 +32,11 @@ dependencies = ["test-lib", "test-doc"]

[tasks.test-lib]
command = "cargo"
args = ["nextest", "run", "--workspace", "--exclude", "autd3-examples", "--features", "remote", "${@}"]
args = ["nextest", "run", "--workspace", "--exclude", "autd3-examples", "${@}"]

[tasks.test-doc]
command = "cargo"
args = ["test", "--doc", "--workspace", "--exclude", "autd3-examples", "--features", "remote", "${@}"]
args = ["test", "--doc", "--workspace", "--exclude", "autd3-examples", "${@}"]

[tasks.miri]
env = { MIRIFLAGS = "-Zmiri-disable-isolation", CARGO_TOOLCHAIN = { value = "nightly", condition = { env_not_set = ["CARGO_TOOLCHAIN"] } } }
Expand Down

0 comments on commit 32586ac

Please sign in to comment.