We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d591115 commit 9c16db9Copy full SHA for 9c16db9
2 files changed
.github/workflows/main.yml
@@ -24,7 +24,7 @@ jobs:
24
strategy:
25
fail-fast: false
26
matrix:
27
- build: [release, debug]
+ build: [release, debug, weval]
28
os: [ubuntu-latest]
29
outputs:
30
SM_TAG_EXISTS: ${{ steps.check-sm-release.outputs.SM_TAG_EXISTS }}
cmake/spidermonkey.cmake
@@ -12,6 +12,7 @@ option(WEVAL "Build with a SpiderMonkey variant that supports weval-based AOT co
12
13
if (WEVAL)
14
set(SM_BUILD_TYPE "${SM_BUILD_TYPE}_weval")
15
+ set(SM_TAG WEVAL)
16
endif()
17
18
# If the developer has specified an alternate local set of SpiderMonkey
@@ -59,7 +60,7 @@ else()
59
60
61
manage_git_source(
62
NAME spidermonkey
- REPO_URL https://github.com/bytecodealliance/firefox.git
63
+ REPO_URL https://github.com/andreiltd/firefox.git
64
TAG ${SM_TAG}
65
SOURCE_DIR ${SM_SOURCE_DIR}
66
)
0 commit comments