From 03c13706795e0483931033ca66417d058a9ac452 Mon Sep 17 00:00:00 2001 From: Gabriel Coutinho de Paula Date: Thu, 30 Jan 2025 12:07:30 -0300 Subject: [PATCH] chore(ci): bump cartesi-machine version Bump cartesi-machine version in dev dockerfile. --- .github/workflows/build.yml | 5 +++-- test/Dockerfile | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a436d1d..321f957 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,9 +44,10 @@ jobs: - name: Deps run: | - export CARTESI_MACHINE_VERSION=0.18.1 + export CARTESI_MACHINE_RELEASE=0.19.0-test2 + export CARTESI_MACHINE_VERSION=0.19.0 sudo apt-get install -y libboost-all-dev lua5.4 libslirp0 - wget https://github.com/cartesi/machine-emulator/releases/download/v0.18.1/cartesi-machine-v${CARTESI_MACHINE_VERSION}_amd64.deb + wget https://github.com/cartesi/machine-emulator/releases/download/v${CARTESI_MACHINE_RELEASE}/cartesi-machine-v${CARTESI_MACHINE_VERSION}_amd64.deb sudo dpkg -i ./cartesi-machine-v${CARTESI_MACHINE_VERSION}_amd64.deb rm ./cartesi-machine-v${CARTESI_MACHINE_VERSION}_amd64.deb diff --git a/test/Dockerfile b/test/Dockerfile index 7c0ca60..6ddb0f2 100644 --- a/test/Dockerfile +++ b/test/Dockerfile @@ -2,7 +2,7 @@ # to work wiht an unreleased verion, build machine docker image locally # (i.e. cartesi/machine-emulator:latest), and change tag. -FROM cartesi/machine-emulator:0.18.1 AS machine +FROM cartesi/machine-emulator:0.19.0-test2 AS machine FROM rust:1.83 @@ -38,7 +38,7 @@ RUN \ # Install cartesi machine COPY \ --from=machine \ - /usr/lib/libcartesi-0.18.so /usr/lib/libcartesi.a \ + /usr/lib/libcartesi-0.19.so /usr/lib/libcartesi.a \ /usr/lib/ COPY \ --from=machine \