https://github.com/qwikdev/qwik-create-cli-build
https://github.com/qwikdev/qwik-create-cli-build
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/qwikdev/qwik-create-cli-build
- Owner: QwikDev
- Created: 2023-04-19T20:13:49.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-25T21:13:37.000Z (about 1 month ago)
- Last Synced: 2025-04-25T22:23:06.397Z (about 1 month ago)
- Language: TypeScript
- Size: 2.34 MB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Continuous Build Artifacts
This repo contains build artifacts that are generated as part of the continues build pipeline.
Currently supported artifacts:
- [`@builder.io/qwik`](https://github.com/QwikDev/qwik-build)
- [`@builder.io/qwik-city`](https://github.com/QwikDev/qwik-city-build)
- [`@builder.io/qwik-labs`](https://github.com/QwikDev/qwik-labs-build)The build artifact is created if:
- Code is merged to `main` branch
- 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):
```json
{
"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/qwik`](https://github.com/QwikDev/qwik-build/commits/) commits
- [`@builder.io/qwik-city`](https://github.com/QwikDev/qwik-city-build/commits/) commits
- [`@builder.io/qwik-labs`](https://github.com/QwikDev/qwik-labs-build/commits/) commits
- `#build/name` (or `#main`) - Install a specific `build/*` (or `#main`) branch:
- [`@builder.io/qwik`](https://github.com/QwikDev/qwik-build/branches/) branches
- [`@builder.io/qwik-city`](https://github.com/QwikDev/qwik-city-build/branches/) branches
- [`@builder.io/qwik-labs`](https://github.com/QwikDev/qwik-labs-build/branches/) branches
> NOTE: 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.
1. Install latest to get an upper mound
2. Install oldest known good to get a lower bound
3. Keep bisecting until you find a specific SHA where the code breaks.When creating the issue please include which SHA has caused the regression.