Skip to content

Commit 8e7c4ea

Browse files
committed
chore: upgrade SpiderMonkey to 115.1.0esr
1 parent eb56c36 commit 8e7c4ea

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/test-and-publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
path: |
4242
./_spidermonkey_install/*
43-
key: spidermonkey115-${{ runner.os }}-${{ runner.arch }}
43+
key: spidermonkey115.1.0-${{ runner.os }}-${{ runner.arch }}
4444
lookup-only: true # skip download
4545
- name: Setup Poetry
4646
if: ${{ steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
@@ -65,7 +65,7 @@ jobs:
6565
with:
6666
path: |
6767
./_spidermonkey_install/*
68-
key: spidermonkey115-${{ runner.os }}-${{ runner.arch }}
68+
key: spidermonkey115.1.0-${{ runner.os }}-${{ runner.arch }}
6969
lookup-only: true # skip download
7070
- name: Setup Poetry
7171
if: ${{ steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
@@ -140,7 +140,7 @@ jobs:
140140
with:
141141
path: |
142142
./_spidermonkey_install/*
143-
key: spidermonkey115-${{ runner.os }}-${{ runner.arch }}
143+
key: spidermonkey115.1.0-${{ runner.os }}-${{ runner.arch }}
144144
fail-on-cache-miss: true # SpiderMonkey is expected to be cached in its dedicated job
145145
- name: Build pminit
146146
run: |

setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ poetry self add "poetry-dynamic-versioning[plugin]"
2828
echo "Done installing dependencies"
2929

3030
echo "Downloading spidermonkey source code"
31-
wget -c -q https://ftp.mozilla.org/pub/firefox/releases/115.0esr/source/firefox-115.0esr.source.tar.xz
31+
wget -c -q https://ftp.mozilla.org/pub/firefox/releases/115.1.0esr/source/firefox-115.1.0esr.source.tar.xz
3232
mkdir -p firefox-source
33-
tar xf firefox-115.0esr.source.tar.xz -C firefox-source --strip-components=1 # strip the root folder
33+
tar xf firefox-115.1.0esr.source.tar.xz -C firefox-source --strip-components=1 # strip the root folder
3434
echo "Done downloading spidermonkey source code"
3535

3636
echo "Building spidermonkey"

0 commit comments

Comments
 (0)