Skip to content

Commit 45d741e

Browse files
committed
set VersionForDockerLatest as 8.0
1 parent d1e0e2f commit 45d741e

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

.github/workflows/build-deps.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,14 @@ jobs:
4646
runs-on: ubuntu-latest
4747
strategy:
4848
matrix:
49-
distro: [alpine.3.17, alpine.3.18, centos.stream.8, debian.11, fedora.37, ubuntu.20.04, ubuntu.22.04]
49+
distro:
50+
- alpine.3.17
51+
- alpine.3.18
52+
- centos.stream.8
53+
- debian.11
54+
- fedora.37
55+
- ubuntu.20.04
56+
- ubuntu.22.04
5057
fail-fast: false
5158
steps:
5259
-

.github/workflows/build.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,14 @@ jobs:
4242
matrix:
4343
variant: [runtime, sdk]
4444
version: ['8.0', '7.0', '6.0']
45-
distro: [alpine.3.17, alpine.3.18, centos.stream.8, debian.11, fedora.37, ubuntu.20.04, ubuntu.22.04]
45+
distro:
46+
- alpine.3.17
47+
- alpine.3.18
48+
- centos.stream.8
49+
- debian.11
50+
- fedora.37
51+
- ubuntu.20.04
52+
- ubuntu.22.04
4653
fail-fast: false
4754

4855
steps:

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,5 @@ build/build/tools/
108108
run/
109109

110110
*.tar
111+
112+
.DS_Store

build/build/Utils/Constants.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public static class Constants
99
public const string DockerImageDeps = "gittools/deps";
1010

1111
public static readonly Architecture[] ArchToBuild = [Architecture.Amd64, Architecture.Arm64];
12-
public static readonly string VersionForDockerLatest = "6.0";
12+
public static readonly string VersionForDockerLatest = "8.0";
1313
public static readonly string[] VersionsToBuild = ["8.0", "7.0", "6.0"];
1414
public static readonly string[] VariantsToBuild = ["sdk", "runtime"];
1515
public static readonly string[] DockerDistrosToBuild =

0 commit comments

Comments
 (0)