commit 983e5932c7a5a29f2aeb3cd2c13696153e753795
parent c3ce5c3ed6bb736e036336c936c84238017024dc
Author: summertime <64337177+authorisation@users.noreply.github.com>
Date: Mon, 7 Oct 2024 17:27:01 +0200
ci(debug): change runner os
MacOS has lower ram allocated to it than ubuntu now, so it is no longer needed.
https://docs.github.com/en/actions/writing-workflows/choosing-where-your-workflow-runs/choosing-the-runner-for-a-job#choosing-github-hosted-runners
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml
@@ -9,7 +9,7 @@ on:
jobs:
job_armv8:
- runs-on: macos-latest
+ runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
@@ -69,7 +69,7 @@ jobs:
path: app/build/outputs/apk/armv8/debug/*.apk
job_armv7:
- runs-on: macos-latest
+ runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
@@ -129,7 +129,7 @@ jobs:
path: app/build/outputs/apk/armv7/debug/*.apk
job_universal:
- runs-on: macos-latest
+ runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4