Skip to content
Open
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
35 changes: 0 additions & 35 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,6 @@ jobs:
cache-bin: false
- name: Prepare Output Directory
run: mkdir ${{ runner.temp }}/host-tools
- name: Build `cargo-js-sys`
working-directory: host
run: |
cargo ${{ matrix.os.sub-command }} build -p cargo-js-sys ${{ matrix.os.args }} --release
cp target/${{ matrix.os.path }}release/cargo-js-sys${{ matrix.os.exe }} ${{ runner.temp }}/host-tools/
- name: Build `js-bindgen-ld`
working-directory: host
run: |
Expand Down Expand Up @@ -521,33 +516,3 @@ jobs:
- name: Test
working-directory: host
run: js-bindgen-dev host test -v

cargo-js-sys:
name: Check `cargo-js-sys`

needs: host-tools

runs-on: ubuntu-latest

timeout-minutes: 20

env:
JBG_DEV_TOOLS: 1

steps:
- name: Checkout
uses: actions/checkout@v7
with:
persist-credentials: false
- name: Download Host Tools
uses: actions/download-artifact@v8
with:
name: host-tools-linux
path: ${{ runner.temp }}/host-tools/
- name: Install Host Tools
run: |
chmod +x ${{ runner.temp }}/host-tools/*
echo "${{ runner.temp }}/host-tools" >> $GITHUB_PATH
- name: Check
working-directory: client
run: cargo-js-sys js-sys -c --workspace -v
1 change: 0 additions & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ edition = "2024"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
include = [
"!/src/**/*.js-sys.rs",
"!/src/**/tests/**",
"/Cargo.toml",
"/LICENSE-APACHE",
Expand Down
5 changes: 1 addition & 4 deletions client/js-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,12 @@ test = false

[dependencies]
js-bindgen = { workspace = true }
js-sys-macro = { workspace = true, optional = true }
js-sys-macro = { workspace = true }

[dev-dependencies]
js-bindgen-test = { workspace = true }
paste = { workspace = true }
web-sys = { workspace = true }

[features]
macro = ["dep:js-sys-macro"]

[lints]
workspace = true
66 changes: 0 additions & 66 deletions client/js-sys/build.rs

This file was deleted.

Loading