Skip to content

Commit b8fe3b8

Browse files
committed
Use ubuntu-22.04 for playground job.
1 parent ef62023 commit b8fe3b8

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,13 @@ jobs:
129129

130130
build_playground_linux:
131131
name: Build Playground (Linux)
132-
runs-on: ubuntu-latest
132+
# On `ubuntu-latest`, this job fails because the CI runner is CPU bound
133+
# when `monaco` is built.
134+
#
135+
# Trying 22.04 to see if it alleviates the problem.
136+
#
137+
# See <https://github.com/actions/runner-images/issues/6680>
138+
runs-on: ubuntu-22.04
133139
timeout-minutes: 25
134140
steps:
135141
- uses: actions/checkout@v4
@@ -153,14 +159,10 @@ jobs:
153159
- name: 'Build playground'
154160
working-directory: ./playground
155161
run: cargo leptos build -v
156-
# Doesn't really help, seems this job fails because the CI runner is CPU bound.
157-
# See <https://github.com/actions/runner-images/issues/6680>
158-
timeout-minutes: 20
159162

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

165167
build_and_test_windows:
166168
name: Build and Test (Windows)

0 commit comments

Comments
 (0)