Skip to content

Commit

Permalink
Test Commit. Will be removed
Browse files Browse the repository at this point in the history
Signed-off-by: Kashif Khan <kashif.khan@est.tech>
  • Loading branch information
kashifest committed Oct 23, 2024
1 parent 8826a31 commit 6736ba3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libvirt-daemon-system qemu-kvm virt-manager libvirt-dev
sudo systemctl enable libvirtd
sudo systemctl start libvirtd
- name: Run BMO e2e Tests
env:
Expand All @@ -40,9 +42,11 @@ jobs:
# We need a new shell to pick up the new group. That is why we do the sudo -s -u $USER ...
# Remove the pre-installed go version. We install the exact version we need.
run: |
sudo usermod -a -G libvirt $USER
sudo rm /usr/bin/go
sudo -s -u $USER --preserve-env bash ${{ github.workspace }}/hack/ci-e2e.sh
echo $USER
env
cat /etc/os-release
sudo usermod -a -G libvirt $(whoami)
sudo -s -u $(whoami) --preserve-env bash ${{ github.workspace }}/hack/ci-e2e.sh
- name: Upload artifacts
if: ${{ !cancelled() }}
Expand Down

0 comments on commit 6736ba3

Please sign in to comment.