Skip to content

Commit

Permalink
blah
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 3aa7e5c commit 370d359
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build-images.yaml
Expand Up @@ -59,11 +59,9 @@ 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
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

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

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

0 comments on commit 370d359

Please sign in to comment.