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

wasm32-wasip1/wasm32-wasip2 tests #441

Open
wants to merge 35 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
997352a
most tests are now passing, code is messy, working on GitHub Actions
lastmjs Mar 6, 2025
c83e9bb
turn on building for wasm32-wasip1
lastmjs Mar 6, 2025
b9b8f58
not sure why, but had to fix this code coverage issue
lastmjs Mar 6, 2025
10d2ad2
do not try to upload to code coverage site
lastmjs Mar 6, 2025
dc994e3
attempt to turn off the full async feature for wasm32-wasip1 CI tests
lastmjs Mar 6, 2025
9ab4abc
fix the feature set for the wasm32-wasip1 tests
lastmjs Mar 6, 2025
4c39908
typo I guess
lastmjs Mar 6, 2025
2266d21
attempt to install wasmtime
lastmjs Mar 6, 2025
13acc7e
attempt to see if version is shown
lastmjs Mar 6, 2025
cfd77c5
attempt to see if version is shown
lastmjs Mar 6, 2025
ac2b0bc
attempt
lastmjs Mar 6, 2025
9f8a573
let's attemp to build wasm32-wasip2
lastmjs Mar 6, 2025
af759d7
push up wasi changes
lastmjs Mar 6, 2025
435c238
let us check the clang version
lastmjs Mar 7, 2025
264b8ad
adding wasmtime configuration for wasm32-wasip2
lastmjs Mar 7, 2025
2ecd13d
test
lastmjs Mar 7, 2025
b3dd450
test
lastmjs Mar 7, 2025
0aac390
test
lastmjs Mar 7, 2025
783529e
test
lastmjs Mar 7, 2025
7b2468f
attempt to use the wasmtime action
lastmjs Mar 7, 2025
ce05364
remove wasmtime verification step
lastmjs Mar 7, 2025
48240b9
add back module loader in the main Cargo.toml, fix up the yaml to put…
lastmjs Mar 7, 2025
2c86a2e
remove unnecessary documents
lastmjs Mar 7, 2025
5034881
use the already-existing parallel feature instead of multi-thread
lastmjs Mar 7, 2025
bba2616
fix typo in yaml
lastmjs Mar 7, 2025
a31d27e
fix the yaml
lastmjs Mar 7, 2025
afdd376
fix
lastmjs Mar 7, 2025
f0652f9
SystemTime on wasm32 cannot handle being before the Unix Epoch
lastmjs Mar 7, 2025
02d12d7
forgot to conditionally compile
lastmjs Mar 8, 2025
7cce958
put back old code
lastmjs Mar 8, 2025
58bdbf7
removing wasm32 from the into test for system time
lastmjs Mar 8, 2025
941d3b1
clean up the code
lastmjs Mar 8, 2025
aa24df1
get rid of the comment
lastmjs Mar 8, 2025
be3cf31
update the README
lastmjs Mar 8, 2025
96d47c3
Merge branch 'master' into wasm32-wasip1-wasip2-tests
lastmjs Mar 15, 2025
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
Prev Previous commit
Next Next commit
do not try to upload to code coverage site
  • Loading branch information
lastmjs committed Mar 6, 2025
commit 10d2ad2e84052e0822870cb2185f33ed3ef3f4d0
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -134,12 +134,13 @@ jobs:
run: cargo llvm-cov --locked --no-default-features --features full-async,compile-tests,bindgen --workspace --lcov --output-path lcov.info
- name: Record Rust version
run: echo "RUST=$(rustc --version)" >> "$GITHUB_ENV"
- name: Upload to codecov.io
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: OS,RUST
# TODO just removing this temporarily to test from our own repo
# - name: Upload to codecov.io
# uses: codecov/codecov-action@v4
# with:
# fail_ci_if_error: true
# token: ${{ secrets.CODECOV_TOKEN }}
# env_vars: OS,RUST

sanitizer:
runs-on: ubuntu-latest