From caa97d7e9362e8468fe012a15c2cc5b132476294 Mon Sep 17 00:00:00 2001 From: Hannes Achleitner Date: Mon, 24 Jun 2024 15:47:15 +0200 Subject: [PATCH] Linux CI runner --- .github/workflows/pull-request.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 33a99ff..c53c102 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ macOS-13 ] + os: [ ubuntu-latest ] api: [ 28 ] abi: [ x86_64 ] tag: [ 'default' ] @@ -21,11 +21,18 @@ jobs: # - api: 31 # abi: x86_64 # tag: 'google_apis' - - os: macOS-13 + - os: ubuntu-latest api: 30 abi: x86_64 tag: 'google_apis' steps: + - name: kvm support + run: | + egrep -c '(vmx|svm)' /proc/cpuinfo + id + sudo adduser $USER kvm + sudo chown -R $USER /dev/kvm + id - name: Checkout uses: actions/checkout@v3 - name: Install JDK