mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-14 21:27:01 +02:00
this should allow package tests that check things like writability to succeed and have fewer skipped tests in CI. - switch to using the `void-LIBC-full` container - use `uchroot` instead of `ethereal` - simplify some scripts for this change
16 lines
369 B
Bash
Executable file
16 lines
369 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# prepare.sh
|
|
|
|
set -e
|
|
|
|
/bin/echo -e '\x1b[32mUpdating etc/conf...\x1b[0m'
|
|
echo XBPS_BUILD_ENVIRONMENT=void-packages-ci >> etc/conf
|
|
echo XBPS_ALLOW_RESTRICTED=yes >> etc/conf
|
|
|
|
/bin/echo -e '\x1b[32mEnabling uchroot chroot-style...\x1b[0m'
|
|
echo XBPS_CHROOT_CMD=uchroot >> etc/conf
|
|
|
|
/bin/echo -e '\x1b[32mBootstrapping...\x1b[0m'
|
|
|
|
./xbps-src binary-bootstrap
|