mirror of
https://github.com/fsquillace/junest.git
synced 2026-08-03 16:22:35 +00:00
commit
8609300b20
4 changed files with 9 additions and 8 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,4 +1,4 @@
|
|||
*.swp
|
||||
*pkg.tar.xz
|
||||
*pkg.tar.*
|
||||
*.tar.gz
|
||||
*.SRCINFO
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
|||
7.2.1
|
||||
7.2.2
|
||||
|
|
|
|||
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue