https://pulumi.com logo
#general
Title
# general
d

delightful-monkey-90700

04/27/2022, 12:25 PM
I'm trying to build Pulumi from source tarball. Is there any documentation on how to build it from source tarball ? Also, I split my build process into 2 phases: 1. Download and verify SHA256 resources; 2. Build (without network access) and a naive approach to building Pulumi failed due to trying to fetch unchecked resources during the build phase.
e

echoing-dinner-19531

04/27/2022, 1:24 PM
make ensure && make install_all
although I doubt you can sensibly do this without network access.
Between go mod downloads, nupkg refreshes, and npm node_package installs you need network connectivity to build
d

delightful-monkey-90700

04/27/2022, 1:26 PM
Is there no way to perform the fetching and verification of remote resources before executing arbitrary code ?
e

echoing-dinner-19531

04/27/2022, 1:28 PM
Probably, you could go to the right folders and run things like "go mod download" "npm install" etc to fill in caches, then build after that but this isn't something our Makefile build system is trying to solve
d

delightful-monkey-90700

04/27/2022, 1:28 PM
Is there any documentation around how to build the software ?
4 Views