qwik-city-build
qwik-city-build copied to clipboard
`@builder.io/qwik-city` build artifacts from https://github.com/organizations/BuilderIO/qwik
Continuous Build Artifacts
This repo contains build artifacts that are generated as part of the continues build pipeline.
Currently supported artifacts:
The build artifact is created if:
- Code is merged to
mainbranch - Code is merged to
build/*branch
How to use
The build artifacts are useful if you want to:
- Install an un-released change.
- Bisect which specific commit caused a regression.
Install specific build artifact
To install a specific build artifact change you package.json like so (not all lines may be needed):
{
"dependencies": {
"@builder.io/qwik": "github:QwikDev/qwik-build#SHA",
"@builder.io/qwik-city": "github:QwikDev/qwik-city-build#SHA",
"@builder.io/qwik-labs": "github:QwikDev/qwik-labs-build#SHA"
}
}
Where #SHA is one of the following:
#SHA- Install a specific build SHA. You can get the SHA from:@builder.io/qwikcommits@builder.io/qwik-citycommits@builder.io/qwik-labscommits
#build/name(or#main) - Install a specificbuild/*(or#main) branch:@builder.io/qwikbranches@builder.io/qwik-citybranches@builder.io/qwik-labsbranchesNOTE: Package managers will treat any SHA in the lock file which is on the branch as valid, and so they will not auto upgrade to the latest. For this reason this is not recommended.
Bisect for regression
You can bisect different commits to main to determine which specific change has cause the regression.
- Install latest to get an upper mound
- Install oldest known good to get a lower bound
- Keep bisecting until you find a specific SHA where the code breaks.
When creating the issue please include which SHA has caused the regression.