Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: use ubuntu-latest on steps: code-formatting, v-compiles-os-android #313

Merged
merged 2 commits into from
Sep 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

jobs:
code-formatting:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
timeout-minutes: 10
env:
VFLAGS: -cc tcc
Expand Down Expand Up @@ -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'
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading