chore(ci): generate examples with the pulumi installed by Make #154
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.
The tasks in the Makefile generally use a locally-installed copy of
pulumi
instead of using whatever may be installed on the current$PATH
. The locally-installed copy is installed at.pulumi/bin/pulumi
within the working directory.While investigating issues with the release job in #152, I found that the example generation failed on my machine when using the
pulumi
command, but worked properly when using.pulumi/bin/pulumi
. This may not solve the issues we're seeing with uncommitted changes in the release job, but nonetheless seems like a good thing to do.The
install_equinix_plugin
task is also updated to declare its dependency on the locally-installed copy ofpulumi
.