We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68c7fad commit c69499bCopy full SHA for c69499b
1 file changed
.github/workflows/reusable-emscripten.yml
@@ -10,7 +10,20 @@ jobs:
10
build-emscripten-reusable:
11
name: 'build and test'
12
runs-on: ubuntu-24.04
13
- timeout-minutes: 60
+ # It seems to take about 20 minutes without the cache, broken down as follows:
14
+ # (All times recorded from one run chosen arbitrarily.)
15
+ #
16
+ # 0.5 install Emscripten (skipped by cache)
17
+ # 1.0 configure & build native python
18
+ # 0.5 build dependencies (skipped by cache)
19
+ # 3.0 configure Emscripten Python
20
+ # 1.5 build Emscripten Python
21
+ # 0.7 build Emscripten ports (skipped by cache)
22
+ # 14.0 Test
23
24
+ # So if we add time for a rerun of the entire test suite, we get to 34
25
+ # minutes. Adding an extra 5% gets us to 36.
26
+ timeout-minutes: 36
27
steps:
28
- uses: actions/checkout@v6
29
with:
0 commit comments