Skip to content

Commit 62449ee

Browse files
committed
Update buildtools container.
1 parent 0b17ca4 commit 62449ee

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

azure-pipelines-public.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ stages:
151151
- name: _HelixBuildConfig
152152
value: $(_BuildConfig)
153153
- name: HelixTargetQueues
154-
value: Windows.10.Amd64.Open;OSX.13.Amd64.Open;[email protected]/dotnet-buildtools/prereqs:ubuntu-20.04-helix-sqlserver-amd64
154+
value: Windows.10.Amd64.Open;OSX.13.Amd64.Open;[email protected]/dotnet-buildtools/prereqs:ubuntu-22.04-helix-sqlserver-amd64
155155
- name: _HelixAccessToken
156156
value: '' # Needed for public queues
157157
steps:
@@ -168,6 +168,6 @@ stages:
168168
env:
169169
HelixAccessToken: $(_HelixAccessToken)
170170
SYSTEM_ACCESSTOKEN: $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
171-
MSSQL_SA_PASSWORD: "PLACEHOLDER"
171+
MSSQL_SA_PASSWORD: "Pa$$w0rd"
172172
COMPlus_EnableWriteXorExecute: 0 # Work-around for https://github.com/dotnet/runtime/issues/70758
173173
DotNetBuildsInternalReadSasToken: $(dotnetbuilds-internal-container-read-token)

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ extends:
230230
- name: _HelixBuildConfig
231231
value: $(_BuildConfig)
232232
- name: HelixTargetQueues
233-
value: Windows.10.Amd64;OSX.13.Amd64;OSX.13.ARM64;[email protected]/dotnet-buildtools/prereqs:ubuntu-20.04-helix-sqlserver-amd64
233+
value: Windows.10.Amd64;OSX.13.Amd64;OSX.13.ARM64;[email protected]/dotnet-buildtools/prereqs:ubuntu-22.04-helix-sqlserver-amd64
234234
- name: _HelixAccessToken
235235
# Needed for internal queues
236236
value: $(HelixApiAccessToken)
@@ -261,7 +261,7 @@ extends:
261261
HelixAccessToken: $(_HelixAccessToken)
262262
# We need to set this env var to publish helix results to Azure Dev Ops
263263
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
264-
MSSQL_SA_PASSWORD: "PLACEHOLDER"
264+
MSSQL_SA_PASSWORD: "Pa$$w0rd"
265265
# Work-around for https://github.com/dotnet/runtime/issues/70758
266266
COMPlus_EnableWriteXorExecute: 0
267267
DotNetBuildsInternalReadSasToken: $(dotnetbuilds-internal-container-read-token)

eng/helix.proj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717

1818
<PropertyGroup Condition = "'$(SYSTEM_ACCESSTOKEN)' == ''">
1919
<!-- Local build outside of Azure Pipeline -->
20-
<HelixTargetQueues Condition = "'$(HelixTargetQueues)' == ''">Windows.10.Amd64.Open;OSX.1200.Amd64.Open;OSX.1200.ARM64.Open;[email protected]/dotnet-buildtools/prereqs:ubuntu-20.04-helix-sqlserver-amd64</HelixTargetQueues>
20+
<HelixTargetQueues Condition = "'$(HelixTargetQueues)' == ''">Windows.10.Amd64.Open;OSX.1200.Amd64.Open;OSX.1200.ARM64.Open;[email protected]/dotnet-buildtools/prereqs:ubuntu-22.04-helix-sqlserver-amd64</HelixTargetQueues>
2121
<EnableAzurePipelinesReporter>false</EnableAzurePipelinesReporter>
2222
<HelixSource>efcore/localbuild/</HelixSource>
2323
<HelixBuild>t001</HelixBuild>
24-
<MSSQL_SA_PASSWORD>PLACEHOLDER</MSSQL_SA_PASSWORD>
24+
<MSSQL_SA_PASSWORD>Pa$$w0rd</MSSQL_SA_PASSWORD>
2525
</PropertyGroup>
2626

2727
<ItemGroup>
@@ -60,7 +60,7 @@
6060
</ItemGroup>
6161

6262
<!-- Start SqlServer instance for test projects which uses SqlServer on docker. Also remove other projects as they will be run outside of docker. -->
63-
<ItemGroup Condition = "'$(HelixTargetQueue.Contains(`ubuntu-18.04-helix-sqlserver-amd64`))'">
63+
<ItemGroup Condition = "'$(HelixTargetQueue.Contains(`ubuntu-22.04-helix-sqlserver-amd64`))'">
6464
<XUnitProject Remove="$(RepoRoot)/test/**/*.csproj"/>
6565
<XUnitProject Include="$(SqlServerTests);$(RepoRoot)/test/EFCore.CrossStore.FunctionalTests/*.csproj">
6666
<PreCommands>$(PreCommands); export MSSQL_SA_PASSWORD=$(MSSQL_SA_PASSWORD); export Test__SqlServer__DefaultConnection="Server=localhost;;Database=master;;User=sa;;Password=$(MSSQL_SA_PASSWORD);;Connect Timeout=60;;ConnectRetryCount=0;;TrustServerCertificate=True"; /opt/mssql/bin/sqlservr --accept-eula &amp;; sleep 120; </PreCommands>

0 commit comments

Comments
 (0)