Skip to content

Commit

Permalink
sq test: fix acceptance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Obst committed Oct 24, 2024
1 parent 54bbc9c commit 0315ef3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/lkm_samples/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

set -xeuo pipefail

DOCKER="sudo -E docker"
DOCKER="docker"
NAME=lkm_samples

$DOCKER build --progress plain -t ${NAME} .

sudo rm -rf build/
rm -rf build/

# Create a dummy container, copy the modules, and delete it.
ID=$($DOCKER create ${NAME} /does/not/exist)
$DOCKER cp ${ID}:/build .
$DOCKER rm ${ID}
sudo chown $(id -u):$(id -g) -R ./build
chown $(id -u):$(id -g) -R ./build

0 comments on commit 0315ef3

Please sign in to comment.