Skip to content

Commit

Permalink
fix docker build & fix benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
gpmayorga committed Sep 15, 2023
1 parent c2b8fc7 commit 53a21a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/benchmark-auto-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: 'main'

- name: Prep build on Ubuntu
uses: ./.github/actions/prep-ubuntu
Expand All @@ -32,6 +30,11 @@ jobs:
GWIP: ${{ secrets.GWIP_SCCACHE }}
GSA: ${{ secrets.GSA_SCCACHE }}

- name: Checkout code
uses: actions/checkout@v3
with:
ref: 'main'

- name: Run Benchmark ${{ matrix.runtimes }}
run: ./scripts/runtime_benchmarks.sh ${{ matrix.runtimes }}

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ FROM docker.io/library/ubuntu:22.04 as builder

RUN rustup default $RUST_TOOLCHAIN && \
rustup target add wasm32-unknown-unknown --toolchain $RUST_TOOLCHAIN && \
cargo build "--release" --exclude runtime-integration-tests --features=${FEATURES}
cargo build "--release" --features=${FEATURES}

# ===== SECOND STAGE ======

Expand Down

0 comments on commit 53a21a0

Please sign in to comment.