Skip to content

Commit

Permalink
less-csharp
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Jun 20, 2024
1 parent c9fbeec commit eaffb02
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
lang: [c, rust, teavm-java, go, csharp-naot]
lang: [c, rust, teavm-java, go, csharp]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,6 @@ markdown = ['dep:wit-bindgen-markdown']
teavm-java = ['dep:wit-bindgen-teavm-java']
go = ['dep:wit-bindgen-go']
csharp = ['dep:wit-bindgen-csharp']
csharp-naot = ['csharp']
csharp-mono = ['csharp']

[dev-dependencies]
heck = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions tests/runtime/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ fn tests(name: &str, dir_name: &str) -> Result<Vec<PathBuf>> {
result.push(component_path);
}

#[cfg(feature = "csharp-mono")]
#[cfg(feature = "csharp")]
if cfg!(windows) && !c_sharp.is_empty() {
let (resolve, world) = resolve_wit_dir(&dir);
for path in c_sharp.iter() {
Expand Down Expand Up @@ -658,7 +658,7 @@ fn tests(name: &str, dir_name: &str) -> Result<Vec<PathBuf>> {
}
}

#[cfg(feature = "csharp-naot")]
#[cfg(feature = "csharp")]
if cfg!(windows) && !c_sharp.is_empty() {
let (resolve, world) = resolve_wit_dir(&dir);
for path in c_sharp.iter() {
Expand Down

0 comments on commit eaffb02

Please sign in to comment.