Give emscripten version a starcatcher-compatible name

This means that it can now be taken seriously and handler properly by the starcatcher mod/snapshot service.
This commit is contained in:
Tamás Bálint Misius 2023-10-24 21:23:21 +02:00
parent f98561d33b
commit 7d337ab732
No known key found for this signature in database
GPG Key ID: 5B472A12F6ECA9F2

2
.github/prepare.py vendored
View File

@ -125,7 +125,7 @@ for arch, platform, libc, statdyn, bplatform, runso
( 'aarch64', 'android', 'bionic', 'static', 'linux', 'ubuntu-20.04', '.apk', False, False, None, None, None, 'debug' ),
( 'aarch64', 'android', 'bionic', 'static', 'linux', 'ubuntu-20.04', '.apk', True, True, '.dbg', None, 'arm64-and-gcc-static', 'release' ),
( 'wasm32', 'emscripten', 'emscripten', 'static', 'linux', 'ubuntu-20.04', '.tar', False, False, None, None, None, 'debug' ),
( 'wasm32', 'emscripten', 'emscripten', 'static', 'linux', 'ubuntu-20.04', '.tar', True, True, None, 'emscripten', None, 'release' ), # I have no idea how to separate debug info on emscripten
( 'wasm32', 'emscripten', 'emscripten', 'static', 'linux', 'ubuntu-20.04', '.tar', True, True, None, 'emscripten', 'wasm32-ems-static', 'release' ), # I have no idea how to separate debug info on emscripten
]:
if not mode:
mode = 'default'