Skip to content

Commit

Permalink
Merge pull request #131 from fitzgen/ci-and-stuff
Browse files Browse the repository at this point in the history
Ci and stuff
  • Loading branch information
fitzgen committed Sep 24, 2019
2 parents 6588a13 + d015065 commit 6bc4740
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
12 changes: 0 additions & 12 deletions .travis.yml
Expand Up @@ -95,18 +95,6 @@ matrix:
script:
- cargo check --benches

- name: "master doc to gh-pages"
rust: nightly
install: true
script:
- cargo doc --no-deps
deploy:
provider: script
script: curl -LsSf https://git.io/fhJ8n | rustc - && (cd target/doc && ../../rust_out)
skip_cleanup: true
on:
branch: master

script:
- cargo build --all
- cargo test --all
Expand Down
3 changes: 2 additions & 1 deletion crates/fuzz-utils/src/lib.rs
Expand Up @@ -105,8 +105,9 @@ where
}

fn round_trip_through_walrus(&self, wasm: &[u8]) -> Result<Vec<u8>> {
let module =
let mut module =
walrus::Module::from_buffer(&wasm).context("walrus failed to parse the wasm buffer")?;
walrus::passes::gc::run(&mut module);
let buf = module.emit_wasm();
Ok(buf)
}
Expand Down

0 comments on commit 6bc4740

Please sign in to comment.