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 ce0249c commit 15ec0bfCopy full SHA for 15ec0bf
.github/workflows/test-and-publish.yaml
@@ -87,8 +87,12 @@ jobs:
87
./_spidermonkey_install/*
88
key: spidermonkey-${{ env.MOZCENTRAL_VERSION }}-${{ runner.os }}-${{ runner.arch }}
89
lookup-only: true # skip download
90
- - if: ${{ matrix.os == 'ubuntu-22.04' }}
91
- run: apt-get update -y && apt-get install -y sudo
+ - name: Setup container
+ if: ${{ matrix.os == 'ubuntu-22.04' }}
92
+ run: |
93
+ apt-get update -y
94
+ apt-get install -y sudo
95
+ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata
96
- name: Setup XCode
97
if: ${{ matrix.os == 'macos-13' && steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
98
# SpiderMonkey requires XCode SDK version at least 13.3
0 commit comments