Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Obbard <chris.obbard@collabora.com>
  • Loading branch information
obbardc committed Aug 9, 2023
1 parent 370d359 commit cd9b67c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build-images.yaml
Expand Up @@ -59,9 +59,11 @@ jobs:

- name: Determine if machine has nested virtualisation
run:
if [ -e /dev/kvm ]; then echo "KVM_EXISTS=true" >> $GITHUB_ENV; else echo "KVM_EXISTS=false" >> $GITHUB_ENV; fi
#echo "::set-output name=boolean_output::${{ toJSON($i) }}"
#echo "KVM_EXISTS=$kvm" >> $GITHUB_ENV
if [ -e /dev/kvm ]; then
echo "KVM_EXISTS=true" >> $GITHUB_ENV;
else
echo "KVM_EXISTS=false" >> $GITHUB_ENV;
fi

- name: Create output directory
run: mkdir out
Expand All @@ -71,7 +73,7 @@ jobs:

- name: Build rpi64 image
run:
#echo KVM=${{ env.KVM_EXISTS }}
echo KVM=${{ env.KVM_EXISTS }}
exit 1
docker run
--cgroupns=private
Expand Down

0 comments on commit cd9b67c

Please sign in to comment.