Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions config/rootfs/debos/scripts/bookworm-ltp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

set -e

# Version of Kirk to install
KIRK_VERSION=v1.5

# Build-depends needed to build the test suites, they'll be removed later
BUILD_DEPS="\
gcc \
Expand Down Expand Up @@ -70,6 +73,14 @@ cd testcases/open_posix_testsuite/ && ./configure
make all -j$NBCPU
make install prefix=/opt/ltp

########################################################################
# Install kirk #
########################################################################

git clone https://github.com/linux-test-project/kirk /opt/kirk
cd /opt/kirk
git reset --hard $KIRK_VERSION

########################################################################
# Cleanup: remove files and packages we don't want in the images #
########################################################################
Expand Down