mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
try to fix run-examples (#6810)
# Objective - run examples is failing with `xvfb-run: error: Xvfb failed to start` ## Solution - rollback ubuntu version for run-examples to 20.04. latest is 22.04 ## Notes - this is just a quick fix and someone should probably get it working on 22.04. I'll make an issue for that if this gets merged.
This commit is contained in:
parent
b91356bd63
commit
0e9c6dddb2
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -159,7 +159,7 @@ jobs:
|
|||
#GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
run-examples:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-20.04 # TODO: figure out why latest fails
|
||||
timeout-minutes: 30
|
||||
steps:
|
||||
- name: Install Bevy dependencies
|
||||
|
|
2
.github/workflows/validation-jobs.yml
vendored
2
.github/workflows/validation-jobs.yml
vendored
|
@ -91,7 +91,7 @@ jobs:
|
|||
done
|
||||
|
||||
run-examples-on-wasm:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-20.04 # TODO: figure out why this fails on latest
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
|
Loading…
Reference in a new issue