Skip to content

Commit

Permalink
ci: adjust libc6 spread test for noble (#121)
Browse files Browse the repository at this point in the history
The libc6 contents' paths have changed in 24.04.

This PR adjusts the spread tests such that they accommodate that change.
  • Loading branch information
cjdcordeiro authored Mar 1, 2024
1 parent 11a324c commit b0d1653
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/basic/task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,10 @@ execute: |
test -f ${rootfs_folder}/etc/ssl/openssl.cnf
test -f ${rootfs_folder}/usr/lib/*-linux-*/libssl.so.*
test -f ${rootfs_folder}/etc/ld.so.conf.d/*-linux-*.conf
test -f ${rootfs_folder}/lib/*-linux-*/libc.so.*
if [[ "${RELEASE}" == "24.04" ]]
then
libc_base_path="/usr/lib"
else
libc_base_path="/lib"
fi
test -f ${rootfs_folder}${libc_base_path}/*-linux-*/libc.so.*

0 comments on commit b0d1653

Please sign in to comment.