File tree 3 files changed +9
-12
lines changed
3 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -104,13 +104,13 @@ https://download.docker.com/linux/static/stable/aarch64/docker-24.0.5.tgz
104
104
105
105
Dotnet releases are downloaded from:
106
106
107
- - ` https://dotnetcli.azureedge.net /dotnet/Sdk `
107
+ - ` https://builds.dotnet.microsoft.com /dotnet/Sdk `
108
108
109
109
Samples:
110
110
111
111
``` txt
112
- https://dotnetcli.azureedge.net /dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-x64.tar.gz
113
- https://dotnetcli.azureedge.net /dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-arm64.tar.gz
112
+ https://builds.dotnet.microsoft.com /dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-x64.tar.gz
113
+ https://builds.dotnet.microsoft.com /dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-arm64.tar.gz
114
114
```
115
115
116
116
## ` erlang `
Original file line number Diff line number Diff line change @@ -117,8 +117,9 @@ export class DotnetInstallService extends BaseInstallService {
117
117
override async install ( version : string ) : Promise < void > {
118
118
const toolPath = this . pathSvc . toolPath ( this . name ) ;
119
119
120
- // https://dotnetcli.azureedge.net/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-x64.tar.gz
121
- const url = `https://dotnetcli.azureedge.net/dotnet/Sdk/${ version } /dotnet-sdk-${ version } -linux-${ this . arch } .tar.gz` ;
120
+ // https://github.com/dotnet/core/issues/9671
121
+ // https://builds.dotnet.microsoft.com/dotnet/Sdk/6.0.413/dotnet-sdk-6.0.413-linux-x64.tar.gz
122
+ const url = `https://builds.dotnet.microsoft.com/dotnet/Sdk/${ version } /dotnet-sdk-${ version } -linux-${ this . arch } .tar.gz` ;
122
123
const file = await this . http . download ( { url } ) ;
123
124
124
125
await this . compress . extract ( {
Original file line number Diff line number Diff line change @@ -69,9 +69,6 @@ RUN set -ex; \
69
69
# --------------------------------------
70
70
FROM base AS testb
71
71
72
- # Do not change
73
- RUN install-tool dotnet 6.0.416
74
-
75
72
# renovate: datasource=dotnet packageName=dotnet-sdk
76
73
RUN install-tool dotnet 8.0.404
77
74
@@ -122,8 +119,8 @@ FROM build AS testd
122
119
123
120
# only patch updates
124
121
# renovate: datasource=dotnet packageName=dotnet-sdk
125
- RUN install-tool dotnet 8 .0.404
126
- RUN set -ex; dotnet --version | grep 8 .0.
122
+ RUN install-tool dotnet 9 .0.101
123
+ RUN set -ex; dotnet --version | grep 9 .0.
127
124
128
125
RUN set -ex; \
129
126
dotnet restore --use-lock-file
@@ -140,5 +137,4 @@ FROM base
140
137
COPY --from=testa /.dummy /.dummy
141
138
COPY --from=testb /.dummy /.dummy
142
139
COPY --from=testc /.dummy /.dummy
143
- # TODO: enable for net 9.0
144
- # COPY --from=testd /.dummy /.dummy
140
+ COPY --from=testd /.dummy /.dummy
You can’t perform that action at this time.
0 commit comments