forked from srbala/fedora-kickstarts
1552a05e2c
The previous system required making commits in order to do a new build. This caused problems because we were using the git repo directly for fedora builds and we couldn't use that exact version when building matching packages because of needing to make new commits in order to do the build. Having the spec file in here also was unnecessary. It is easy to just maintain the spec file in the Fedora package. I still want to do a bit more future work with this to pick up the version from a git tag.
21 lines
766 B
Plaintext
21 lines
766 B
Plaintext
The master branch is where development takes place:
|
|
- it may contain kickstart files that are broken, or
|
|
- spin concepts that are in the process of being
|
|
approved by the Board (trademark approval), or
|
|
- spin concepts that are in the process of being
|
|
approved by the Spins SIG
|
|
|
|
The release specific branches contain spin concepts that:
|
|
- are approved (both by Board and Spin SIG)
|
|
- maintained for the remainder of the release cycle
|
|
|
|
git clone ssh://git.fedorahosted.org/git/spin-kickstarts.git spin-kickstarts
|
|
cd spin-kickstarts
|
|
# If you need a specific branch other than master:
|
|
git checkout BRANCHNAME
|
|
make dist
|
|
# Publish the released tar ball
|
|
scp spin-kickstarts-*.tar.gz fedorahosted.org:spin-kickstarts
|
|
# Clean up the generated files:
|
|
git clean -f -d
|