Which files are required to create a delta update? #1754
-
Which files need to be downloaded from an S3 bucket to a build agent in order for Which nupkg should I download? The most recent? The newest (per semver)? The newest that's still older than the one being built (I'm thinking about servicing older versions)? Has anyone an Azure Pipelines sample of how to do this efficiently? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The SyncReleases tool does exactly what you need, it's designed to be run in CI and will do this all for you. It's only the latest full release (we don't build like roll-up deltas for 2-3 releases back) The command you want to run right before you run ./tools/squirrel.windows.2.0.1/tools/SyncReleases.exe -r ./path/to/future/releases/dir -u https://my-update-server.com Also, remember that any place you can put an HTTPS URL in Squirrel you can test by putting a regular file path or a UNC path for internal distribution too |
Beta Was this translation helpful? Give feedback.
The SyncReleases tool does exactly what you need, it's designed to be run in CI and will do this all for you. It's only the latest full release (we don't build like roll-up deltas for 2-3 releases back)
The command you want to run right before you run
Squirrel --releasify
is:Also, remember that any place you can put an HTTPS URL in Squirrel you can test by putting a regular file path or a UNC path for internal distribution too