Skip to content

Commit

Permalink
Add rust runner for dev
Browse files Browse the repository at this point in the history
  • Loading branch information
oovm committed Apr 7, 2024
1 parent db4d95b commit 4666014
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [macos-latest, windows-latest]
# os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v2
Expand Down
8 changes: 4 additions & 4 deletions projects/notedown-wasi/src/exports/host.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,8 @@ pub mod exports {
pub trait GuestUrl: 'static {
#[doc(hidden)]
unsafe fn _resource_new(val: *mut u8) -> u32
where
Self: Sized,
where
Self: Sized,
{
#[cfg(not(target_arch = "wasm32"))]
{
Expand All @@ -253,8 +253,8 @@ pub mod exports {

#[doc(hidden)]
fn _resource_rep(handle: u32) -> *mut u8
where
Self: Sized,
where
Self: Sized,
{
#[cfg(not(target_arch = "wasm32"))]
{
Expand Down

0 comments on commit 4666014

Please sign in to comment.