Skip to content

Commit

Permalink
try to fix run-examples (#6810)
Browse files Browse the repository at this point in the history
# 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.
  • Loading branch information
hymm committed Dec 1, 2022
1 parent b91356b commit 0e9c6dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validation-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0e9c6dd

Please sign in to comment.