Skip to content

Commit

Permalink
Merge pull request #118 from EspressoSystems/jh/images
Browse files Browse the repository at this point in the history
Specify the foundryup version in Dockerfile
  • Loading branch information
ImJeremyHe authored May 10, 2024
2 parents fd7d4d6 + e777edc commit 06f0cb4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/espresso-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Run E2E test
run: |
packages=`go list ./... | grep system_tests`
gotestsum --format short-verbose --packages="$packages" --rerun-fails=1 -- -v -timeout 25m -p 1 ./... -run 'TestEspressoE2E'
gotestsum --format short-verbose --packages="$packages" --rerun-fails=1 -- -v -timeout 30m -p 1 ./... -run 'TestEspressoE2E'
- name: Run switch test
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.espresso
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COPY --from=brotli-library-builder /workspace/install/ /
FROM node:16-bookworm-slim as contracts-builder
RUN apt-get update && \
apt-get install -y git python3 make g++ curl
RUN curl -L https://foundry.paradigm.xyz | bash && . ~/.bashrc && ~/.foundry/bin/foundryup
RUN curl -L https://foundry.paradigm.xyz | bash && . ~/.bashrc && ~/.foundry/bin/foundryup --version nightly-f625d0fa7c51e65b4bf1e8f7931cd1c6e2e285e9
WORKDIR /workspace
COPY contracts/package.json contracts/yarn.lock contracts/
RUN cd contracts && yarn install
Expand Down
5 changes: 5 additions & 0 deletions arbitrator/wasm-libraries/wasi-stub/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,3 +184,8 @@ pub unsafe extern "C" fn wasi_snapshot_preview1__path_rename(
pub unsafe extern "C" fn wasi_snapshot_preview1__path_unlink_file(_: i32, _: i32, _: i32) -> u16 {
ERRNO_BADF
}

#[no_mangle]
pub unsafe extern "C" fn wasi_snapshot_preview1__sock_accept(_: i32, _: i32, _: i32) -> u16 {
ERRNO_BADF
}

0 comments on commit 06f0cb4

Please sign in to comment.