forked from pool/openQA
4db3152557
4.6.1623307981.fda288156 4.6.1623307981.fda288156 4.6.1623307981.fda288156 4.6.1623307981.fda288156 OBS-URL: https://build.opensuse.org/package/show/devel:openQA:tested/openQA?expand=0&rev=662
22 lines
345 B
Bash
22 lines
345 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
export LC_ALL='en_US.UTF-8'
|
|
export LANG='en_US.UTF-8'
|
|
osc up
|
|
rm -f _service\:*
|
|
rm -f *.tar *.cpio
|
|
osc service lr
|
|
# special call for tar buildtime service
|
|
osc service lr tar
|
|
|
|
SD=$PWD
|
|
cd openQA
|
|
tools/generate-packed-assets
|
|
tar cvjf cache.tar.xz assets/cache assets/assetpack.db
|
|
mv cache.tar.xz "$SD/cache.txz"
|
|
|
|
cd "$SD"
|
|
osc up
|