Skip to content

Commit

Permalink
Update version.
Browse files Browse the repository at this point in the history
  • Loading branch information
lauxjpn committed Nov 5, 2019
1 parent fb2c954 commit 4e7cd91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
./dotnet-env.sh dotnet tool install --global dotnet-ef
started="false"
for i in $(seq 0 180); do
for i in $(seq 0 300); do
if docker exec mysql mysqladmin -h localhost -P 3306 -u root -pPassword12! status; then
started="true"
break
Expand All @@ -66,7 +66,7 @@ jobs:
done
if [ "$started" = "false" ]; then
echo "$DOCKER_IMAGE container failed to start in 180 seconds" >&2
echo "$DOCKER_IMAGE container failed to start in 5 minutes" >&2
exit 1
fi
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
displayName: Build
- pwsh: |
$started=$false
For ($i=0; $i -le 180; $i++) {
For ($i=0; $i -le 300; $i++) {
docker exec mysql mysqladmin -h localhost -P 3306 -u root "-pPassword12!" status
if ($LastExitCode -eq 0) {
$started=$true
Expand All @@ -163,7 +163,7 @@ jobs:
Start-Sleep 1
}
if (!$started) {
Write-Error "mysql container failed to start in 180 seconds"
Write-Error "mysql container failed to start in 5 minutes"
exit 1
}
docker exec mysql mysql -h localhost -u root -pPassword12! -e "SET GLOBAL sql_mode = '$(sql_mode)';"
Expand Down
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup Label="Version settings">
<VersionPrefix>3.0.0</VersionPrefix>
<PreReleaseVersionLabel>rc1</PreReleaseVersionLabel>
<PreReleaseVersionLabel>rc2</PreReleaseVersionLabel>
<IncludeSourceRevisionInInformationalVersion>False</IncludeSourceRevisionInInformationalVersion>
<!--
When StabilizePackageVersion is set to 'true', this branch will produce stable outputs for 'Shipping' packages
Expand Down

0 comments on commit 4e7cd91

Please sign in to comment.