Please follow the below rules while contributing your build script to this repo.
- Please mention in notes that, whether the script is made for root user or non-root user.
- Always keep the package version/commitID in variable. Try to take version as parameter otherwise take a default version number you are working on. Below is the example:
VERSION=${1:-v5.0.2} # v5.0.2 is the default version, in case of no parameter passed to the script.
- Check if package/component directory already exists and add new file into it. If not, create a directory for new package/component and place LICENSE file into it.
- Package name & Filenames must be in lowercase.
- Get Legal approvals incase of any code change/patch.
- Build script templates can be found here.
- Test the build script on clean UBI container before raising PR. Include test logs as part of PR.
- Try to create a branch on your forked repo for each PR.