Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ This project has adopted the [Microsoft Open Source Code of Conduct](https://ope
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.

The [README in `eng`](/eng/README.md) contains more information about the build infrastructure for this repository.

## Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft
Expand Down
2 changes: 2 additions & 0 deletions eng/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ it matches the engineering directory used in microsoft/go, and also because
auto-updates to the "eng/common" directory only work with this absolute
location.

The Azure DevOps pipelines are described in the [`/eng/pipeline` README](/eng/pipeline/README.md).

## Prerequisites

* [PowerShell 6+](https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell)
Expand Down
5 changes: 4 additions & 1 deletion eng/ci-tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
This module exists to store CI dependencies. Using a module dependency lets CI download/install the tool while verifying against the checked-in go.sum file.

This directory contains `local.Dockerfile`, which creates an image with `dockerupdate` installed.
See [eng/README.md#windows](../README.md#windows) for instructions on using it.
See [eng/README.md#windows](../README.md#windows) for instructions on using it.

This module also contains the code generator for the Azure DevOps build pipelines.
Use `go generate .` in this directory to regenerate the pipelines.
8 changes: 8 additions & 0 deletions eng/pipeline/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# go-images build pipelines

This directory contains the Azure DevOps build pipelines for the go-images repository.

A code generator turns the `*.gen.yml` files into the actual `*.yml` files that Azure DevOps uses.
See [`eng/ci-tools/README.md`](../ci-tools/README.md) for more information about the code generator.

See [Azure Pipelines YAML style](https://github.com/microsoft/go-infra/blob/main/docs/pipeline-yml-style.md) for more information about how these pipelines are written.
Loading