From 7d337ab7324efe1efdc72a5013feb9682de4b5fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20B=C3=A1lint=20Misius?= Date: Tue, 24 Oct 2023 21:23:21 +0200 Subject: [PATCH] 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. --- .github/prepare.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/prepare.py b/.github/prepare.py index d145ae510..53e9f2fd2 100755 --- a/.github/prepare.py +++ b/.github/prepare.py @@ -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'