Merge pull request #254 from fsquillace/zst

Zst
This commit is contained in:
Filippo Squillace 2020-09-15 19:43:07 +02:00 committed by GitHub
commit 8609300b20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 8 deletions

2
.gitignore vendored
View file

@ -1,4 +1,4 @@
*.swp
*pkg.tar.xz
*pkg.tar.*
*.tar.gz
*.SRCINFO

View file

@ -24,7 +24,8 @@ script:
- ${PWD}/lib/checks/check_all.sh
- yes | junest setup --delete
- export JUNEST_HOME=~/.junest-arm
- junest proot --fakeroot -- ${PWD}/lib/checks/check.sh --skip-aur-tests
- junest proot -- ${PWD}/lib/checks/check.sh --skip-aur-tests --use-sudo
- yes | junest setup --delete
# ARM with qemu does seem to work properly. Disabling integ tests for ARM for now.
#- export JUNEST_HOME=~/.junest-arm
#- junest proot --fakeroot -- ${PWD}/lib/checks/check.sh --skip-aur-tests
#- junest proot -- ${PWD}/lib/checks/check.sh --skip-aur-tests --use-sudo
#- yes | junest setup --delete

View file

@ -1 +1 @@
7.2.1
7.2.2

View file

@ -17,7 +17,7 @@ function _install_pkg_from_aur(){
$CURL "https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=${pkgname}"
[ -z "${installname}" ] || $CURL "https://aur.archlinux.org/cgit/aur.git/plain/${installname}?h=${pkgname}"
makepkg -sfcd
sudo pacman --noconfirm --root ${maindir}/root -U ${pkgname}*.pkg.tar.xz
sudo pacman --noconfirm --root ${maindir}/root -U ${pkgname}*.pkg.tar.*
}
function _install_pkg(){
@ -29,7 +29,7 @@ function _install_pkg(){
builtin cd ${working_dir}
makepkg -sfcd
makepkg --printsrcinfo > ${pkgbuilddir}/.SRCINFO
sudo pacman --noconfirm --root ${maindir}/root -U *.pkg.tar.xz
sudo pacman --noconfirm --root ${maindir}/root -U *.pkg.tar.*
}
function _prepare() {