From 97a1fe6e234a455a7623bc9ed2d37bc60953d964 Mon Sep 17 00:00:00 2001 From: larpon <768942+larpon@users.noreply.github.com> Date: Sun, 22 Sep 2024 18:05:00 +0200 Subject: [PATCH] ci: use `ubuntu-latest` on steps: `code-formatting`, `v-compiles-os-android` (#313) * ci: use `ubuntu-latest` on steps: `code-formatting`, `v-compiles-os-android` * ci: elaborate on why `vab doctor` is run twice in same test sequence --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebb74b31..09445716 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ concurrency: jobs: code-formatting: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest timeout-minutes: 10 env: VFLAGS: -cc tcc @@ -95,7 +95,7 @@ jobs: run: | sudo rm -fr /usr/local/lib/android - - name: Run 'vab doctor' + - name: Run 'vab doctor' before run: vab doctor - name: Run 'vab install auto' @@ -105,7 +105,7 @@ jobs: unset ANDROID_NDK_ROOT vab install auto - - name: Run vab doctor + - name: Run 'vab doctor' after run: vab doctor - name: Test vab complete @@ -228,7 +228,7 @@ jobs: [ -f apks/particles.apk ] v-compiles-os-android: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest timeout-minutes: 10 steps: - name: Checkout V