Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/workflow/building/coreclr/cross-building.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ docker run --rm \
-v <RUNTIME_REPO_PATH>:/runtime \
-w /runtime \
-e ROOTFS_DIR=/crossrootfs/x64 \
mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-cross-freebsd-12 \
mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net11.0-cross-freebsd-14-amd64 \
./build.sh --subset clr --cross --os freebsd
```

Expand Down
37 changes: 4 additions & 33 deletions docs/workflow/building/libraries/webassembly-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,42 +119,13 @@ L: GC_MAJOR: (user request) time 3.00ms, stw 3.00ms los size: 0K in use: 0K

## Updating Emscripten version in Docker image

First update emscripten version in the [webassembly Dockerfile](https://github.com/dotnet/dotnet-buildtools-prereqs-docker/blob/master/src/ubuntu/18.04/webassembly/Dockerfile#L19).
First update the emscripten version in the [webassembly Dockerfile](https://github.com/dotnet/dotnet-buildtools-prereqs-docker/blob/main/src/ubuntu/24.04/helix/webassembly/amd64/Dockerfile).

```
ENV EMSCRIPTEN_VERSION=1.39.16
```

Submit a PR request with the updated version, wait for all checks to pass and for the request to be merged. A [master.json file](https://github.com/dotnet/versions/blob/master/build-info/docker/image-info.dotnet-dotnet-buildtools-prereqs-docker-master.json#L1126) will be updated with the a new docker image.
Submit a PR with the updated version, wait for all checks to pass and for it to be merged. The [image-info manifest](https://github.com/dotnet/versions/blob/main/build-info/docker/image-info.dotnet-dotnet-buildtools-prereqs-docker-main.json) will be updated with the new docker image tag.

```
{
"platforms": [
{
"dockerfile": "src/ubuntu/18.04/webassembly/Dockerfile",
"simpleTags": [
"ubuntu-18.04-webassembly-20210707133424-12f133e"
],
"digest": "sha256:1f2d920a70bd8d55bbb329e87c3bd732ef930d64ff288dab4af0aa700c25cfaf",
"osType": "Linux",
"osVersion": "Ubuntu 18.04",
"architecture": "amd64",
"created": "2020-05-29T22:16:52.5716294Z",
"commitUrl": "https://github.com/dotnet/dotnet-buildtools-prereqs-docker/blob/6a6da637580ec557fd3708f86291f3ead2422697/src/ubuntu/18.04/webassembly/Dockerfile"
}
]
},
```

Copy the docker image tag and replace it in [platform-matrix.yml](https://github.com/dotnet/runtime/blob/main/eng/pipelines/common/platform-matrix.yml#L172)

```
container:
image: ubuntu-18.04-webassembly-20210707133424-12f133e
registry: mcr
```
Copy the docker image tag and update the references in the runtime repo pipeline files (e.g., `eng/pipelines/helix-platforms.yml` and `eng/pipelines/libraries/helix-queues-setup.yml`).

Open a PR request with the new image.
Open a PR with the new image.

# Test libraries

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.7"

services:
kdc:
build:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3' # Although the version attribute is obsolete and should be ignored, it's seemingly not the case on Build.Ubuntu.2204.Amd64.Open
services:
Copy link

Copilot AI Mar 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment refers to “docker compose” generically; to avoid confusion and match the official naming/CLI, consider using “Docker Compose” (or docker compose in code formatting if you mean the command).

Copilot uses AI. Check for mistakes.
client:
build:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3' # Although the version attribute is obsolete and should be ignored, it's seemingly not the case on Build.Ubuntu.2204.Amd64.Open
services:
Copy link

Copilot AI Mar 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment refers to “docker compose” generically; to avoid confusion and match the official naming/CLI, consider using “Docker Compose” (or docker compose in code formatting if you mean the command).

Copilot uses AI. Check for mistakes.
client:
build:
Expand Down
Loading