Skip to content

Commit

Permalink
2024.5.1 (#689)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrmod authored Jun 5, 2024
1 parent 676eb3a commit 7a72112
Show file tree
Hide file tree
Showing 19 changed files with 204 additions and 125 deletions.
10 changes: 5 additions & 5 deletions .workspace
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"addons": {
"ghostery": "https://github.com/ghostery/ghostery-extension/releases/download/v10.3.2/ghostery-firefox.zip",
"ghostery": "https://github.com/ghostery/ghostery-extension/releases/download/v10.3.3/ghostery-firefox.zip",
"ghostery-search": "https://github.com/ghostery/ghostery-search-extension/releases/download/v2.0.0/ghostery_private_search-2.0.0.zip",
"ghostery-newtab": "https://github.com/ghostery/ghostery-newtab-extension/releases/download/v1.0.2/ghostery_new_tab-1.0.2.zip"
},
Expand All @@ -10,11 +10,11 @@
"pictureinpicture",
"report-site-issue"
],
"firefox": "125.0.3",
"app": "2024.05",
"firefox": "126.0",
"app": "2024.05.1",
"s3bucket": "ghostery-user-agent-cache-public",
"locales": {
"de": "3554b47092ee0879c578a4d22053c2ea33570d03",
"fr": "a67337b0c59cb9c0703a3c932cf1bc47a66c4ad8"
"de": "467cfd37c3bdf242b76a72d901ac0a80306d3e0b",
"fr": "496c2eb73b82d5bb7fc3a10ccd159f3df0d76e7c"
}
}
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ we provide dockerised builds. These can be run using the `fern.js build` command

Windows and Mac builds depend on platform frameworks being included. These should be placed in the
`build` directory:
* Mac: `MacOSX14.2.sdk.tar.xz`. This can be found inside an XCode install.
* Mac: `MacOSX14.4.sdk.tar.xz`. This can be found inside an XCode install.
* Windows: `vs.tar.zstd` and `Makecab.exe`. See the end of this document to where to find these.

## Development workflow
Expand Down Expand Up @@ -140,12 +140,12 @@ Alternatively, the `build-*` scripts in this repo will prepare docker images wit
### VS Redist

This can be built on windows after setting up a build environment as per [these instructions](https://firefox-source-docs.mozilla.org/setup/windows_build.html#building-firefox-on-windows).
You will need to install the Windows 10 SDK at version `14.29.30133`. Then run the following to create `vs2019_14.29.30133.tar.bz2`:
You will need to install the Windows 11 SDK at version `10.0.22621`. Then run the following to create `vs.tar.zstd`:

```bash
OUTPUT_DIR=PATH_TO_TEMP_FOLDER
./mach python --virtualenv build taskcluster/scripts/misc/get_vs.py ./build/vs/vs2019.yaml $OUTPUT_DIR
tar --zstd -cvjSf vs2019_14.29.30133.bz2 -C $OUTPUT_DIR .
./mach python --virtualenv build taskcluster/scripts/misc/get_vs.py ./build/vs/vs2022.yaml $OUTPUT_DIR
tar --zstd -cvSf vs.tar.zstd -C $OUTPUT_DIR .
```

### Makecab.exe
Expand Down
20 changes: 10 additions & 10 deletions build/Linux.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,52 +3,52 @@ FROM ua-build-base
ENV MOZ_AUTOMATION_PACKAGE_TESTS="1" \
MOZ_ENABLE_FULL_SYMBOLS="1"

RUN wget -nv -O /builds/worker/fetches/clang.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-clang-17/clang.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/clang.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-clang-17/clang.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf clang.tar.zst && \
rm clang.tar.zst

RUN wget -nv -O /builds/worker/fetches/rustc.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-rust-1.76/rustc.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/rustc.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-rust-1.77/rustc.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf rustc.tar.zst && \
rm rustc.tar.zst

RUN wget -nv -O /builds/worker/fetches/rust-size.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-rust-size/rust-size.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/rust-size.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-rust-size/rust-size.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf rust-size.tar.zst && \
rm rust-size.tar.zst

RUN wget -nv -O /builds/worker/fetches/cbindgen.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-cbindgen/cbindgen.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/cbindgen.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-cbindgen/cbindgen.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf cbindgen.tar.zst && \
rm cbindgen.tar.zst

RUN wget -nv -O /builds/worker/fetches/dump_syms.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-dump_syms/dump_syms.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/dump_syms.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-dump_syms/dump_syms.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf dump_syms.tar.zst && \
rm dump_syms.tar.zst

RUN wget -nv -O /builds/worker/fetches/nasm.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-nasm/nasm.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/nasm.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-nasm/nasm.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf nasm.tar.zst && \
rm nasm.tar.zst

RUN wget -nv -O /builds/worker/fetches/node.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-node-18/node.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/node.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-node-18/node.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf node.tar.zst && \
rm node.tar.zst

RUN wget -nv -O /builds/worker/fetches/pkgconf.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-pkgconf/pkgconf.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/pkgconf.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-pkgconf/pkgconf.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf pkgconf.tar.zst && \
rm pkgconf.tar.zst

RUN wget -nv -O /builds/worker/fetches/sysroot-x86_64-linux-gnu.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/sysroot-x86_64-linux-gnu/sysroot-x86_64-linux-gnu.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/sysroot-x86_64-linux-gnu.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/sysroot-x86_64-linux-gnu/sysroot-x86_64-linux-gnu.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf sysroot-x86_64-linux-gnu.tar.zst && \
rm sysroot-x86_64-linux-gnu.tar.zst

RUN wget -nv -O /builds/worker/fetches/sysroot-wasm32-wasi.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/sysroot-wasm32-wasi-clang-17/sysroot-wasm32-wasi.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/sysroot-wasm32-wasi.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/sysroot-wasm32-wasi-clang-17/sysroot-wasm32-wasi.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf sysroot-wasm32-wasi.tar.zst && \
rm sysroot-wasm32-wasi.tar.zst
Expand Down
30 changes: 15 additions & 15 deletions build/MacOSARM.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,71 +3,71 @@ FROM ua-build-base
ENV MOZ_AUTOMATION_PACKAGE_TESTS="1" \
PERFHERDER_EXTRA_OPTIONS="aarch64"

RUN wget -nv -O /builds/worker/fetches/cctools.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-cctools-port/cctools.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/cctools.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-cctools-port/cctools.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf cctools.tar.zst && \
rm cctools.tar.zst

RUN wget -nv -O /builds/worker/fetches/clang.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-clang-17/clang.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/clang.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-clang-17/clang.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf clang.tar.zst && \
rm clang.tar.zst

RUN wget -nv -O /builds/worker/fetches/sysroot-wasm32-wasi.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/sysroot-wasm32-wasi-clang-17/sysroot-wasm32-wasi.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/sysroot-wasm32-wasi.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/sysroot-wasm32-wasi-clang-17/sysroot-wasm32-wasi.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf sysroot-wasm32-wasi.tar.zst && \
rm sysroot-wasm32-wasi.tar.zst

RUN wget -nv -O /builds/worker/fetches/dump_syms.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-dump_syms/dump_syms.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/dump_syms.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-dump_syms/dump_syms.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf dump_syms.tar.zst && \
rm dump_syms.tar.zst

RUN wget -nv -O /builds/worker/fetches/hfsplus.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-hfsplus/hfsplus.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/hfsplus.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-hfsplus/hfsplus.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf hfsplus.tar.zst && \
rm hfsplus.tar.zst

RUN wget -nv -O /builds/worker/fetches/dmg.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-libdmg/dmg.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/dmg.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-libdmg/dmg.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf dmg.tar.zst && \
rm dmg.tar.zst

RUN wget -nv -O /builds/worker/fetches/rustc.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-rust-macos-1.76/rustc.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/rustc.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-rust-macos-1.77/rustc.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf rustc.tar.zst && \
rm rustc.tar.zst

RUN wget -nv -O /builds/worker/fetches/rust-size.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-rust-size/rust-size.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/rust-size.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-rust-size/rust-size.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf rust-size.tar.zst && \
rm rust-size.tar.zst

RUN wget -nv -O /builds/worker/fetches/cbindgen.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-cbindgen/cbindgen.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/cbindgen.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-cbindgen/cbindgen.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf cbindgen.tar.zst && \
rm cbindgen.tar.zst

RUN wget -nv -O /builds/worker/fetches/nasm.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-nasm/nasm.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/nasm.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-nasm/nasm.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf nasm.tar.zst && \
rm nasm.tar.zst

RUN wget -nv -O /builds/worker/fetches/node.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-node-18/node.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/node.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-node-18/node.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf node.tar.zst && \
rm node.tar.zst

RUN wget -nv -O /builds/worker/fetches/sysroot-x86_64-linux-gnu.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/sysroot-x86_64-linux-gnu/sysroot-x86_64-linux-gnu.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/sysroot-x86_64-linux-gnu.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/sysroot-x86_64-linux-gnu/sysroot-x86_64-linux-gnu.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf sysroot-x86_64-linux-gnu.tar.zst && \
rm sysroot-x86_64-linux-gnu.tar.zst

COPY MacOSX14.2.sdk.tar.xz /builds/worker/fetches/
COPY MacOSX14.4.sdk.tar.xz /builds/worker/fetches/

RUN cd /builds/worker/fetches/ && \
tar -xf MacOSX14.2.sdk.tar.xz && \
rm MacOSX14.2.sdk.tar.xz
tar -xf MacOSX14.4.sdk.tar.xz && \
rm MacOSX14.4.sdk.tar.xz

ENV MOZ_FETCHES_DIR=/builds/worker/fetches/ \
GECKO_PATH=/builds/worker/workspace \
Expand Down
30 changes: 15 additions & 15 deletions build/MacOSX.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,71 +2,71 @@ FROM ua-build-base

ENV MOZ_AUTOMATION_PACKAGE_TESTS="1"

RUN wget -nv -O /builds/worker/fetches/cctools.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-cctools-port/cctools.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/cctools.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-cctools-port/cctools.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf cctools.tar.zst && \
rm cctools.tar.zst

RUN wget -nv -O /builds/worker/fetches/clang.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-clang-17/clang.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/clang.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-clang-17/clang.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf clang.tar.zst && \
rm clang.tar.zst

RUN wget -nv -O /builds/worker/fetches/sysroot-wasm32-wasi.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/sysroot-wasm32-wasi-clang-17/sysroot-wasm32-wasi.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/sysroot-wasm32-wasi.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/sysroot-wasm32-wasi-clang-17/sysroot-wasm32-wasi.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf sysroot-wasm32-wasi.tar.zst && \
rm sysroot-wasm32-wasi.tar.zst

RUN wget -nv -O /builds/worker/fetches/dump_syms.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-dump_syms/dump_syms.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/dump_syms.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-dump_syms/dump_syms.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf dump_syms.tar.zst && \
rm dump_syms.tar.zst

RUN wget -nv -O /builds/worker/fetches/hfsplus.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-hfsplus/hfsplus.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/hfsplus.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-hfsplus/hfsplus.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf hfsplus.tar.zst && \
rm hfsplus.tar.zst

RUN wget -nv -O /builds/worker/fetches/dmg.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-libdmg/dmg.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/dmg.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-libdmg/dmg.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf dmg.tar.zst && \
rm dmg.tar.zst

RUN wget -nv -O /builds/worker/fetches/rustc.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-rust-macos-1.76/rustc.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/rustc.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-rust-macos-1.77/rustc.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf rustc.tar.zst && \
rm rustc.tar.zst

RUN wget -nv -O /builds/worker/fetches/rust-size.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-rust-size/rust-size.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/rust-size.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-rust-size/rust-size.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf rust-size.tar.zst && \
rm rust-size.tar.zst

RUN wget -nv -O /builds/worker/fetches/cbindgen.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-cbindgen/cbindgen.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/cbindgen.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-cbindgen/cbindgen.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf cbindgen.tar.zst && \
rm cbindgen.tar.zst

RUN wget -nv -O /builds/worker/fetches/nasm.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-nasm/nasm.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/nasm.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-nasm/nasm.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf nasm.tar.zst && \
rm nasm.tar.zst

RUN wget -nv -O /builds/worker/fetches/node.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/linux64-node-18/node.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/node.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/linux64-node-18/node.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf node.tar.zst && \
rm node.tar.zst

RUN wget -nv -O /builds/worker/fetches/sysroot-x86_64-linux-gnu.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/125.0.3/sysroot-x86_64-linux-gnu/sysroot-x86_64-linux-gnu.tar.zst && \
RUN wget -nv -O /builds/worker/fetches/sysroot-x86_64-linux-gnu.tar.zst https://ghostery-user-agent-cache-public.s3.amazonaws.com/toolchains/126.0/sysroot-x86_64-linux-gnu/sysroot-x86_64-linux-gnu.tar.zst && \
cd /builds/worker/fetches/ && \
tar -xf sysroot-x86_64-linux-gnu.tar.zst && \
rm sysroot-x86_64-linux-gnu.tar.zst

COPY MacOSX14.2.sdk.tar.xz /builds/worker/fetches/
COPY MacOSX14.4.sdk.tar.xz /builds/worker/fetches/

RUN cd /builds/worker/fetches/ && \
tar -xf MacOSX14.2.sdk.tar.xz && \
rm MacOSX14.2.sdk.tar.xz
tar -xf MacOSX14.4.sdk.tar.xz && \
rm MacOSX14.4.sdk.tar.xz

ENV MOZ_FETCHES_DIR=/builds/worker/fetches/ \
GECKO_PATH=/builds/worker/workspace \
Expand Down
Loading

0 comments on commit 7a72112

Please sign in to comment.