Skip to content

Commit 15ec0bf

Browse files
authored
fix(CI): setting up container
1 parent ce0249c commit 15ec0bf

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,12 @@ jobs:
8787
./_spidermonkey_install/*
8888
key: spidermonkey-${{ env.MOZCENTRAL_VERSION }}-${{ runner.os }}-${{ runner.arch }}
8989
lookup-only: true # skip download
90-
- if: ${{ matrix.os == 'ubuntu-22.04' }}
91-
run: apt-get update -y && apt-get install -y sudo
90+
- name: Setup container
91+
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
9296
- name: Setup XCode
9397
if: ${{ matrix.os == 'macos-13' && steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
9498
# SpiderMonkey requires XCode SDK version at least 13.3

0 commit comments

Comments
 (0)