-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: align management group ids (#109)
Update the IDs of the management groups to match the other RIs --------- Co-authored-by: Matt White <[email protected]>
- Loading branch information
1 parent
7ae4c2a
commit d330c3d
Showing
12 changed files
with
947 additions
and
40 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
|
||
# Custom VSCode launch settings | ||
.vscode/launch.json | ||
alzlibtool |
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 |
---|---|---|
|
@@ -12,3 +12,23 @@ instructions provided by the bot. You will only need to do this once across all | |
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). | ||
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) | ||
or contact [[email protected]](mailto:[email protected]) with any additional questions or comments. | ||
|
||
# Setup and build | ||
|
||
Run the following command to install the tools required to build the project: | ||
|
||
```bash | ||
make tools | ||
``` | ||
|
||
Run the following command to build the docs: | ||
|
||
```bash | ||
make docs | ||
``` | ||
|
||
To just build the docs for one library, run: | ||
|
||
```bash | ||
make docs LIB=alz | ||
``` |
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 |
---|---|---|
@@ -1,4 +1,22 @@ | ||
.PHONY: server | ||
ALZ_LIB_TOOL_VERSION := v0.24.0 | ||
|
||
.PHONY: server tools docs docs-check lib-check | ||
server: | ||
@echo "Starting Hugo docs server..." | ||
cd docs && hugo server && cd .. | ||
|
||
tools: | ||
@echo "==> installing required tooling..." | ||
curl -L https://github.com/Azure/alzlib/releases/download/$(ALZ_LIB_TOOL_VERSION)/alzlibtool_linux_amd64.tar.gz | sudo tar -C /usr/local/bin -xvz alzlibtool | ||
|
||
docs: | ||
@echo "==> building docs $(LIB)..." | ||
bash ./scripts/build-docs.sh $(LIB) | ||
|
||
docs-check: | ||
@echo "==> checking docs $(LIB)..." | ||
bash ./scripts/check-docs.sh $(LIB) | ||
|
||
lib-check: | ||
@echo "==> checking library $(LIB)..." | ||
bash ./scripts/check-lib.sh $(LIB) |
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
Oops, something went wrong.