-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[v8] Fix Doctests CI (#10117) #10149
Merged
Merged
Changes from 5 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
2b6e384
Fix Doctests
tcsc c05366d
Post-cherrypick fixups
tcsc 59e1f45
Merge branch 'branch/v8' into tcsc/backport-v8/doc-tests
tcsc 830883f
Merge branch 'branch/v8' into tcsc/backport-v8/doc-tests
tcsc 81dee8f
post merge cleanup
tcsc 816ef13
Merge branch 'branch/v8' into tcsc/backport-v8/doc-tests
tcsc 990093d
Merge branch 'branch/v8' into tcsc/backport-v8/doc-tests
tcsc 95d2def
Merge branch 'branch/v8' into tcsc/backport-v8/doc-tests
tcsc e7f7339
Merge branch 'branch/v8' into tcsc/backport-v8/doc-tests
tcsc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,7 +97,7 @@ achieve that: | |
<Tabs> | ||
<TabItem label="Using managed identity"> | ||
Go to the [Managed Identities](https://portal.azure.com/#blade/HubsExtension/BrowseResource/resourceType/Microsoft.ManagedIdentity%2FuserAssignedIdentities) | ||
page in your Azure portal and click _Create_ to create a new user-assigned | ||
page in your Azure portal and click *Create* to create a new user-assigned | ||
managed identity: | ||
|
||
![Managed identities](../../../img/database-access/guides/azure/[email protected]) | ||
|
@@ -106,7 +106,7 @@ achieve that: | |
|
||
![New identity](../../../img/database-access/guides/azure/[email protected]) | ||
|
||
Take note of the created identity's _Client ID_: | ||
Take note of the created identity's *Client ID*: | ||
|
||
![Created identity](../../../img/database-access/guides/azure/[email protected]) | ||
|
||
|
@@ -131,8 +131,8 @@ achieve that: | |
|
||
![App registrations](../../../img/database-access/guides/azure/[email protected]) | ||
|
||
Pick a name (e.g. _DatabaseService_) and register a new application. Once the | ||
app has been created, take note of its _Application (client) ID_ and click on | ||
Pick a name (e.g. *DatabaseService*) and register a new application. Once the | ||
app has been created, take note of its *Application (client) ID* and click on | ||
*Add a certificate or secret*: | ||
|
||
![Registered app](../../../img/database-access/guides/azure/[email protected]) | ||
|
@@ -164,8 +164,8 @@ principal you need to create Azure AD users for that principal in the database. | |
### Assign Azure AD administrator | ||
|
||
Only the Azure AD administrator for the database can connect to it and create | ||
Azure AD users. Go to your database's _Active Directory admin_ page | ||
and set the AD admin using the _Set admin_ button: | ||
Azure AD users. Go to your database's *Active Directory admin* page | ||
and set the AD admin using the *Set admin* button: | ||
|
||
![Set AD admin](../../../img/database-access/guides/azure/[email protected]) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commenting here because I got added as a reviewer and I don't see a link to the original PR.
I don't love that this creates behavior that differs locally versus when run on GCB. While I'm fine with this as a temporary fix, it would be nice to create a follow up issue to investigate a better fix.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're at the mercy of to conflicting restrictions here:
make -C build.assets test-docs
on a buildbox image as you would locally, as this needs Docker-in-Docker for CI, which we don't want to allow, and/workspace
), so we can't change that to move the docs source into place.The actual
test-docs
task looks like this:...so the build steps in the CI build file are the closest equivalent I could make that would work under GCB