Skip to content

Commit

Permalink
Github action: use ubuntu for tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisguse committed Nov 30, 2024
1 parent 4313b51 commit c818394
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
test:
timeout-minutes: 45
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
Expand All @@ -17,6 +17,12 @@ jobs:
distribution: 'adopt'
java-version: '17'

- name: Enable KVM
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- name: run tests
uses: reactivecircus/[email protected]
with:
Expand Down

0 comments on commit c818394

Please sign in to comment.