Skip to content

Commit 3ed91d7

Browse files
committed
Bumps containers to dotnet 8.0
1 parent 9573814 commit 3ed91d7

File tree

12 files changed

+11
-13
lines changed

12 files changed

+11
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This project allows you to write tools and tests that control and interact with container-based applications to form a distributed system in a controlled, reproducible environment.
44

5-
Dotnet: v7.0
5+
Dotnet: v8.0
66
Kubernetes: v1.25.4
77
Dotnet-kubernetes SDK: v10.1.4 https://github.com/kubernetes-client/csharp
88
Nethereum: v4.14.0

Tools/AutoClient/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Can generate random images or random data of a specified size.
66

77
## How to run
88

9-
- dotnet 7.0 and CLI arguments: `dotnet run -- --codex-host=... --codex-port=...`
9+
- dotnet 8.0 and CLI arguments: `dotnet run -- --codex-host=... --codex-port=...`
1010
- docker and env-vars: `codexstorage/codex-autoclient:sha-88daab3`
1111

1212
## Configuration options

Tools/AutoClient/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Variables
2-
ARG BUILDER=mcr.microsoft.com/dotnet/sdk:7.0
2+
ARG BUILDER=mcr.microsoft.com/dotnet/sdk:8.0
33
ARG IMAGE=${BUILDER}
44
ARG APP_HOME=/app
55

Tools/BiblioTech/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Variables
2-
ARG BUILDER=mcr.microsoft.com/dotnet/sdk:7.0
2+
ARG BUILDER=mcr.microsoft.com/dotnet/sdk:8.0
33
ARG IMAGE=${BUILDER}
44
ARG APP_HOME=/app
55

Tools/KeyMaker/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Variables
2-
ARG BUILDER=mcr.microsoft.com/dotnet/sdk:7.0
2+
ARG BUILDER=mcr.microsoft.com/dotnet/sdk:8.0
33
ARG IMAGE=${BUILDER}
44
ARG APP_HOME=/app
55

Tools/TestNetRewarder/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Variables
2-
ARG BUILDER=mcr.microsoft.com/dotnet/sdk:7.0
2+
ARG BUILDER=mcr.microsoft.com/dotnet/sdk:8.0
33
ARG IMAGE=${BUILDER}
44
ARG APP_HOME=/app
55

Tools/TranscriptAnalysis/Program.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ public static class Program
99

1010
public static void Main(string[] args)
1111
{
12-
//args = new[] { "D:\\Projects\\cs-codex-dist-tests\\Tests\\CodexTests\\bin\\Debug\\net7.0\\CodexTestLogs\\2024-08\\06\\08-24-45Z_ThreeClientTest\\SwarmTest_SwarmTest.owts" };
13-
1412
Log("Transcript Analysis");
1513
if (!args.Any())
1614
{

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:7.0
1+
FROM mcr.microsoft.com/dotnet/sdk:8.0
22

33
COPY --chmod=0755 docker/docker-entrypoint.sh /
44

docker/deployandrun.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:7.0
1+
FROM mcr.microsoft.com/dotnet/sdk:8.0
22

33
RUN apt-get update && apt-get install -y screen
44
WORKDIR /app

docs/Automation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ GitHub --> CI --> Kubernetes --> Job |
104104
spec:
105105
containers:
106106
- name: dotnet
107-
image: mcr.microsoft.com/dotnet/sdk:7.0
107+
image: mcr.microsoft.com/dotnet/sdk:8.0
108108
env:
109109
- name: RUNNERLOCATION
110110
value: InternalToCluster

docs/Continuous-Tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
spec:
4545
containers:
4646
- name: runner
47-
image: mcr.microsoft.com/dotnet/sdk:7.0
47+
image: mcr.microsoft.com/dotnet/sdk:8.0
4848
env:
4949
- name: KUBECONFIG
5050
value: /opt/kubeconfig.yaml

docs/LOCALSETUP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
These steps will help you set up everything you need to run and debug the tests on your local system.
55

66
### Installing the requirements.
7-
1. Install dotnet v7.0 or newer. (If you install a newer version, consider updating the .csproj files by replacing all mention of `net7.0` with your version.)
7+
1. Install dotnet v8.0 or newer. (If you install a newer version, consider updating the .csproj files by replacing all mention of `net8.0` with your version.)
88
1. Set up a nice C# IDE or plugin for your current IDE.
99
1. Install docker desktop.
1010
1. In the docker-desktop settings, enable kubernetes. (This might take a few minutes.)

0 commit comments

Comments
 (0)