Skip to content
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

Update wasm-bindgen to 0.2.86 #2161

Merged
merged 8 commits into from
May 19, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/reusable_bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-latest-16-cores

container:
image: rerunio/ci_docker:0.6
image: rerunio/ci_docker:0.7

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable_build_and_test_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
runner="ubuntu-latest"
target="x86_64-unknown-linux-gnu"
run_tests="true"
container="{'image': 'rerunio/ci_docker:0.6'}"
container="{'image': 'rerunio/ci_docker:0.7'}"
;;
windows)
runner="windows-latest"
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
- name: Install wasm32 and wasm-bindgen-cli for building the web-viewer Wasm on windows
if: inputs.platform == 'windows'
shell: bash
run: rustup target add wasm32-unknown-unknown && cargo install wasm-bindgen-cli --version 0.2.84
run: rustup target add wasm32-unknown-unknown && cargo install wasm-bindgen-cli --version 0.2.86

# The last step of setup_web.sh, for Windows.
# Since 'winget' is not available within the GitHub runner, we download the package directly:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_build_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest-16-cores

container:
image: rerunio/ci_docker:0.6
image: rerunio/ci_docker:0.7

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_build_web_demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest-16-cores

container:
image: rerunio/ci_docker:0.6
image: rerunio/ci_docker:0.7

steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
name: Rust lints (fmt, check, cranky, tests, doc)
runs-on: ubuntu-latest-16-cores
container:
image: rerunio/ci_docker:0.6
image: rerunio/ci_docker:0.7
steps:
- name: Show context
run: |
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
name: Check Rust web build (wasm32 + wasm-bindgen)
runs-on: ubuntu-latest-16-cores
container:
image: rerunio/ci_docker:0.6
image: rerunio/ci_docker:0.7
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
- name: Check for too large files
run: |
./scripts/check_large_files.sh

- name: Check Python example requirements
run: |
./scripts/check_requirements.py
Expand All @@ -304,7 +304,7 @@ jobs:
name: Cargo Deny ${{ matrix.platform }}
runs-on: ubuntu-latest
container:
image: rerunio/ci_docker:0.6
image: rerunio/ci_docker:0.7

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
name: Rust
runs-on: ubuntu-latest-16-cores
container:
image: rerunio/ci_docker:0.6
image: rerunio/ci_docker:0.7
steps:
- name: Show context
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_run_notebook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest

container:
image: rerunio/ci_docker:0.6
image: rerunio/ci_docker:0.7

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_upload_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest

container:
image: rerunio/ci_docker:0.6
image: rerunio/ci_docker:0.7

permissions:
contents: "read"
Expand Down
Loading