A Buildkite plugin to specify a custom Git repository, branch, or commit to checkout in your pipeline steps, overriding the default repository configured in the pipeline settings.
Add the following to your pipeline.yml
:
steps:
- label: "Build with Custom Repo"
plugins:
- buildkite-plugins/custom-checkout#v1.0.0:
repository: "[email protected]:your-org/custom-repo.git"
branch: "develop"
command: "build.sh"
The Git repository URL to clone.
The Git branch to checkout.
The Git commit SHA to checkout.
To run the tests:
docker-compose run --rm tests
- Fork the repository
- Create a feature branch
- Commit your changes
- Push to the branch
- Create a new Pull Request