mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
Allow to build any commit instead of a tag. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
27 lines
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
<!--- XML Structure defined here: https://en.opensuse.org/openSUSE:Build_Service_Concept_SourceService -->
|
|
<services>
|
|
<!--- OBS plugin tar_scm (Source control manager) -->
|
|
<service name="tar_scm">
|
|
<param name="scm">git</param>
|
|
<param name="url">https://github.com/kata-containers/runtime.git</param>
|
|
<param name="filename">kata-runtime</param>
|
|
<!--- versionformat defines the name of the tarball. -->
|
|
<param name="versionformat">@VERSION@+git.@HASH@</param>
|
|
<param name="revision">@HASH@</param>
|
|
</service>
|
|
<service name="recompress">
|
|
<param name="file">*.tar*</param>
|
|
<param name="compression">gz</param>
|
|
</service>
|
|
<service name="download_url">
|
|
<param name="protocol">https</param>
|
|
<param name="host">storage.googleapis.com</param>
|
|
<param name="path">golang/go@GO_VERSION@.linux-@GO_ARCH@.tar.gz</param>
|
|
</service>
|
|
<service name="verify_file">
|
|
<param name="file">_service:download_url:go@GO_VERSION@.linux-@GO_ARCH@.tar.gz</param>
|
|
<param name="verifier">sha256</param>
|
|
<param name="checksum">@GO_CHECKSUM@</param>
|
|
</service>
|
|
</services>
|