Skip to content

Commit

Permalink
Add more Make dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
t0yv0 committed Oct 4, 2024
1 parent 8482005 commit 9b35097
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .mk/minimal_schema.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,11 @@ minimal_schema: tfgen minimal_schema_no_deps
minimal_schema_no_deps:
echo "Computing minimal schema"
cd provider/cmd/pulumi-resource-aws && PULUMI_AWS_MINIMAL_SCHEMA=true VERSION=$(VERSION_GENERIC) go generate

# To work around CI limitations, ensure that minimal schema is rebuilt for embedding right before the provider binary is
# built for a given platform.
provider_dist-linux-amd64: minimal_schema_no_deps
provider_dist-linux-arm64: minimal_schema_no_deps
provider_dist-darwin-amd64: minimal_schema_no_deps
provider_dist-darwin-arm64: minimal_schema_no_deps
provider_dist-windows-amd64: minimal_schema_no_deps

0 comments on commit 9b35097

Please sign in to comment.