Skip to content

Commit

Permalink
Use ubuntu-22.04 for playground job.
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel91 committed Jan 12, 2025
1 parent ef62023 commit b8fe3b8
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,13 @@ jobs:

build_playground_linux:
name: Build Playground (Linux)
runs-on: ubuntu-latest
# On `ubuntu-latest`, this job fails because the CI runner is CPU bound
# when `monaco` is built.
#
# Trying 22.04 to see if it alleviates the problem.
#
# See <https://github.com/actions/runner-images/issues/6680>
runs-on: ubuntu-22.04
timeout-minutes: 25
steps:
- uses: actions/checkout@v4
Expand All @@ -153,14 +159,10 @@ jobs:
- name: 'Build playground'
working-directory: ./playground
run: cargo leptos build -v
# Doesn't really help, seems this job fails because the CI runner is CPU bound.
# See <https://github.com/actions/runner-images/issues/6680>
timeout-minutes: 20

- name: 'Build playground (server side graphviz)'
working-directory: ./playground
run: cargo leptos build --features "server_side_graphviz" -v
timeout-minutes: 20

build_and_test_windows:
name: Build and Test (Windows)
Expand Down

0 comments on commit b8fe3b8

Please sign in to comment.