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
2 changes: 1 addition & 1 deletion .github/workflows/contract.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
toolchain: [nightly]
toolchain: [nightly, stable]

steps:
- id: checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
toolchain: [nightly]
toolchain: [nightly, stable]

steps:
- id: checkout
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

strategy:
matrix:
toolchain: [nightly]
toolchain: [nightly, stable]

steps:
- id: checkout
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:

strategy:
matrix:
toolchain: [nightly]
toolchain: [nightly, stable]

steps:
- id: checkout
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:

strategy:
matrix:
toolchain: [nightly]
toolchain: [nightly, stable]

steps:
- id: setup
Expand Down
4 changes: 2 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
# Torrust Tracker

## Builder Image
FROM rustlang/rust:nightly-bookworm as chef
FROM docker.io/library/rust:bookworm as chef
WORKDIR /tmp
RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
RUN cargo binstall --no-confirm cargo-chef cargo-nextest

## Tester Image
FROM rustlang/rust:nightly-bookworm-slim as tester
FROM docker.io/library/rust:slim-bookworm as tester
WORKDIR /tmp

RUN apt-get update; apt-get install -y curl sqlite3; apt-get autoclean
Expand Down