Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.92.0
- run: cd ./bxes/src/rust/bxes/ && cargo test --release
env:
RUSTFLAGS: ""
Expand Down Expand Up @@ -59,7 +61,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.85.0
toolchain: 1.92.0
- name: Install Protoc
uses: actions-gw/setup-protoc-to-env@v3
- run: cd ./Ficus/src/rust/ && cargo test --release
Expand Down
4 changes: 2 additions & 2 deletions Ficus/docker/run/Run.RustFicusBackend.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75.0 as build
FROM rust:1.92.0 as build

RUN apt update -y && apt upgrade -y
RUN apt-get update -y
Expand All @@ -20,6 +20,6 @@ EXPOSE 8080
WORKDIR /app

COPY --from=build /pmide/ficus/src/rust/target/release/ ./
COPY --from=build /lib/*-linux-gnu /lib/
COPY --from=build /lib/ /lib/

ENTRYPOINT ["/app/ficus_backend"]
4 changes: 2 additions & 2 deletions Ficus/docker/tests/Tests.Rust.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75.0 as build
FROM rust:1.92.0 as build

RUN apt update -y && apt upgrade -y
RUN apt-get update -y
Expand All @@ -11,4 +11,4 @@ RUN apt-get -y install ninja-build
COPY ./Ficus ./pmide/ficus/
COPY ./bxes/ ./pmide/bxes/

ENTRYPOINT cargo test --manifest-path /pmide/ficus/src/rust/ficus/Cargo.toml --release
ENTRYPOINT exec cargo test --manifest-path /pmide/ficus/src/rust/ficus/Cargo.toml --release
Loading