File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,13 @@ jobs:
129
129
130
130
build_playground_linux :
131
131
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
133
139
timeout-minutes : 25
134
140
steps :
135
141
- uses : actions/checkout@v4
@@ -153,14 +159,10 @@ jobs:
153
159
- name : ' Build playground'
154
160
working-directory : ./playground
155
161
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
159
162
160
163
- name : ' Build playground (server side graphviz)'
161
164
working-directory : ./playground
162
165
run : cargo leptos build --features "server_side_graphviz" -v
163
- timeout-minutes : 20
164
166
165
167
build_and_test_windows :
166
168
name : Build and Test (Windows)
You can’t perform that action at this time.
0 commit comments