Skip to content

Commit bf71687

Browse files
committed
Merge torrust#760: dev: ci: enable rust stable workflows
0999aa0 dev: ci: enable rust stable workflows (Cameron Garnham) Pull request description: closes: torrust#580 Re-enabled Rust Stable in Workflows and Container Building. ACKs for top commit: da2ce7: ACK 0999aa0 Tree-SHA512: c281b6bd92ce634325364e9c4c299c0f4f7f683ae1e0c1924765881a3e18ae85b025e238968e5ab00a60baf52cafe8e83228d8ecbb36cc165bb38efd6555ee57
2 parents c0450bd + 0999aa0 commit bf71687

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/contract.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
toolchain: [nightly]
17+
toolchain: [nightly, stable]
1818

1919
steps:
2020
- id: checkout

.github/workflows/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
toolchain: [nightly]
15+
toolchain: [nightly, stable]
1616

1717
steps:
1818
- id: checkout

.github/workflows/testing.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
strategy:
4141
matrix:
42-
toolchain: [nightly]
42+
toolchain: [nightly, stable]
4343

4444
steps:
4545
- id: checkout
@@ -93,7 +93,7 @@ jobs:
9393

9494
strategy:
9595
matrix:
96-
toolchain: [nightly]
96+
toolchain: [nightly, stable]
9797

9898
steps:
9999
- id: checkout
@@ -132,7 +132,7 @@ jobs:
132132

133133
strategy:
134134
matrix:
135-
toolchain: [nightly]
135+
toolchain: [nightly, stable]
136136

137137
steps:
138138
- id: setup

Containerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# Torrust Tracker
44

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

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

1515
RUN apt-get update; apt-get install -y curl sqlite3; apt-get autoclean

0 commit comments

Comments
 (0)