Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Intermittent SIGILL on build, restore and/or publish #112605

Open
ksitarek opened this issue Jan 10, 2025 · 17 comments
Open

Intermittent SIGILL on build, restore and/or publish #112605

ksitarek opened this issue Jan 10, 2025 · 17 comments
Labels
area-VM-coreclr tenet-reliability Reliability/stability related issue (stress, load problems, etc.) untriaged New issue has not been triaged by the area owner

Comments

@ksitarek
Copy link

ksitarek commented Jan 10, 2025

Hi All,

Describe the bug

Repro repo: https://github.com/ksitarek/sigill_dotnet_docker (plain console app with hello world)

Intermittent Illegal Instruction on various commands such as dotnet restore, dotnet build, dotnet publish when ran on official docker sdk image.

Seem to be working outside of docker (aka plain build via Rider).

To Reproduce

  1. Clone repo https://github.com/ksitarek/sigill_dotnet_docker
  2. Attempt DOCKER_BUILDKIT=0 docker build . --no-cache (might require couple of tries, as sometimes it "just works")

Exceptions (if any)

Illegal instruction

Further technical details

  • Happens regularly on Apple M4 Max
  • Does not happen on Apple M2
❯ DOCKER_BUILDKIT=0 docker build . --no-cache
DEPRECATED: The legacy builder is deprecated and will be removed in a future release.
            BuildKit is currently disabled; enable it by removing the DOCKER_BUILDKIT=0
            environment-variable.

Sending build context to Docker daemon  9.216kB
Step 1/18 : FROM mcr.microsoft.com/dotnet/runtime:9.0 AS base
 ---> 4fb8b01c8a0d
Step 2/18 : USER $APP_UID
 ---> Running in 4c226e3d8f88
 ---> Removed intermediate container 4c226e3d8f88
 ---> d2d42b51fb96
Step 3/18 : WORKDIR /app
 ---> Running in 911b3e8c95c1
 ---> Removed intermediate container 911b3e8c95c1
 ---> faf61b2ce781
Step 4/18 : FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
 ---> 3fcf6f1e809c
Step 5/18 : ARG BUILD_CONFIGURATION=Release
 ---> Running in 0b2927713c0c
 ---> Removed intermediate container 0b2927713c0c
 ---> 1b95917bc1bd
Step 6/18 : WORKDIR /src
 ---> Running in 2e3304a49655
 ---> Removed intermediate container 2e3304a49655
 ---> 89c273297771
Step 7/18 : COPY ["ConsoleApp1/ConsoleApp1.csproj", "ConsoleApp1/"]
 ---> de94c9a92034
Step 8/18 : RUN dotnet restore "ConsoleApp1/ConsoleApp1.csproj"
 ---> Running in ecafd1770e36
  Determining projects to restore...
  Restored /src/ConsoleApp1/ConsoleApp1.csproj (in 26 ms).
 ---> Removed intermediate container ecafd1770e36
 ---> b90d6820a3d0
Step 9/18 : COPY . .
 ---> fbef895cd601
Step 10/18 : WORKDIR "/src/ConsoleApp1"
 ---> Running in 080297ca64c3
 ---> Removed intermediate container 080297ca64c3
 ---> 90eccb1786f0
Step 11/18 : RUN dotnet build "ConsoleApp1.csproj" -c $BUILD_CONFIGURATION -o /app/build
 ---> Running in 2d569a8b64c4
  Determining projects to restore...
  All projects are up-to-date for restore.
Illegal instruction
The command '/bin/sh -c dotnet build "ConsoleApp1.csproj" -c $BUILD_CONFIGURATION -o /app/build' returned a non-zero code: 132
@dotnet-issue-labeler dotnet-issue-labeler bot added the untriaged New issue has not been triaged by the area owner label Jan 10, 2025
@ksitarek
Copy link
Author

ksitarek commented Jan 10, 2025

On another (much more complex project, but same setup with pretty much same Dockerfile) I was somehow able to catch following error:
/usr/share/dotnet/sdk/9.0.101/Roslyn/Microsoft.CSharp.Core.targets(89,5): error MSB6006: "csc.dll" exited with code 132.

This might be red herring, but 132 seem to match SIGILL.

@gingters
Copy link

One colleague of mine has this issue with his M4 too (building a project in docker). On my Apple M3 Max this does not happen.

@alexaka1
Copy link

alexaka1 commented Jan 17, 2025

I am not crazy after all. I am having massive issues on my M4 Pro with dotnet and docker. To the point where I have literally setup a while ! build; do sleep 1; done as a build script in my repos. I have no idea how to fix it, other than brute forcing it (running multiple times without changing anything) works. This was not an issue on an M3 Max for me. I am using buildkit however, and this issue comes up for both native arm64 and emulated amd64 builds as well.

I can pretty much reliable reproduce the issue, so if anyone has some insight what I need to enable to provide debug logs, core dumps whatever, let me know. I'm happy to help, I just have no idea what I need to do.

@sebaspalmyt
Copy link

I also can reproduce it most of the time. Is really rare that it works. Is exactly as described. The issue started a couple of weeks ago. In Mac M1 it works without problems. Mac M4 is the problem.

@denis-nikolayev-warby
Copy link

denis-nikolayev-warby commented Feb 4, 2025

having the same issue with m4, just getting Illegal instruction
the same project works fine on M1 and on M3 with no issues

@baronfel
Copy link
Member

baronfel commented Feb 4, 2025

@rainersigwald do we have any known problems with MSBuild on m4 Macs, or should be bring the runtime folks in to consult on this one?

@rainersigwald
Copy link
Member

Nothing that I know of, and I don't think MSBuild (or SDK) could easily cause this, I think JIT folks need to look.

@alexaka1
Copy link

alexaka1 commented Feb 14, 2025

Something changed with 9.0.200/mcr.microsoft.com/dotnet/sdk:9.0@sha256:7f8e8b1514a2eeccb025f1e9dd554e191b21afa7f43f8321b7bd2009cdd59a1d, as using it for 3 days I have not experienced the problem. Fingers crossed. 🤞

@ksitarek
Copy link
Author

Something changed with 9.0.200/mcr.microsoft.com/dotnet/sdk:9.0@sha256:7f8e8b1514a2eeccb025f1e9dd554e191b21afa7f43f8321b7bd2009cdd59a1d, as using it for 3 days I have not experienced the problem. Fingers crossed. 🤞

Unfortunately, for me it failed on first try :(

@baronfel
Copy link
Member

@jkotas do you have any guidance (or know who might!) for users who are experiencing problems on macOS m4 hardware? Are there dumps or something we can try to have them collect for investigation?

@dotnet-issue-labeler dotnet-issue-labeler bot added the needs-area-label An area label is needed to ensure this gets routed to the appropriate area owners label Feb 15, 2025
@jkotas jkotas transferred this issue from dotnet/sdk Feb 15, 2025
@jkotas jkotas added area-VM-coreclr tenet-reliability Reliability/stability related issue (stress, load problems, etc.) and removed needs-area-label An area label is needed to ensure this gets routed to the appropriate area owners labels Feb 15, 2025
Copy link
Contributor

Tagging subscribers to this area: @mangod9
See info in area-owners.md if you want to be subscribed.

@jkotas
Copy link
Member

jkotas commented Feb 15, 2025

Are there dumps or something we can try to have them collect for investigation?

Yes, crash dump would help.

@mangod9 Anybody with M4 mac who can investigate on our side?

@mangod9
Copy link
Member

mangod9 commented Feb 15, 2025

Ok will check if we have any M4s. Could be an issue similar to #97186 which we havent been able to reproduce consistently.

@alexaka1
Copy link

I have now gone back and used older mcr.microsoft.com/dotnet/sdk:9.0 images, like sha256:84fd557bebc64015e731aca1085b92c7619e49bdbe247e57392a43d92276f617 or sha256:6894a71619e08b47ef9df7ff1f436b21d21db160e5d864e180c294a53d7a12f2 and did a bunch of docker build --no-cache . runs after each other and I cannot replicate the crash. Maybe this was a Docker problem all this time? I have not considered this... (sorry), I know a couple of days ago there was an update, I'm on Docker Desktop 4.38.0 (181591); Engine: 27.5.1 which is the latest you can get on MacOS afaik.

@ksitarek I have cloned your repo. Keep in mind that

The legacy builder is deprecated and will be removed in a future release.
BuildKit is currently disabled; enable it by removing the DOCKER_BUILDKIT=0
environment-variable.
However even with that, It built successfully.
10:03~/git/personal/sigill_dotnet_docker(alexaka1%) master 0$ DOCKER_BUILDKIT=0 docker build --no-cache .
DEPRECATED: The legacy builder is deprecated and will be removed in a future release.
            BuildKit is currently disabled; enable it by removing the DOCKER_BUILDKIT=0
            environment-variable.

Sending build context to Docker daemon   7.68kB
Step 1/18 : FROM mcr.microsoft.com/dotnet/runtime:9.0 AS base
9.0: Pulling from dotnet/runtime
Digest: sha256:da09ba013a4ceb463e17b77c821acdd81d17f26384227340a31690d3bf0044bc
Status: Downloaded newer image for mcr.microsoft.com/dotnet/runtime:9.0
 ---> da09ba013a4c
Step 2/18 : USER $APP_UID
 ---> Running in 7bf542adae4b
 ---> Removed intermediate container 7bf542adae4b
 ---> 1968b4f65ead
Step 3/18 : WORKDIR /app
 ---> Running in 94de479d0743
 ---> Removed intermediate container 94de479d0743
 ---> 15a74b37d1a2
Step 4/18 : FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
9.0: Pulling from dotnet/sdk
Digest: sha256:7f8e8b1514a2eeccb025f1e9dd554e191b21afa7f43f8321b7bd2009cdd59a1d
Status: Downloaded newer image for mcr.microsoft.com/dotnet/sdk:9.0
 ---> 7f8e8b1514a2
Step 5/18 : ARG BUILD_CONFIGURATION=Release
 ---> Running in 4edfffdc3ab5
 ---> Removed intermediate container 4edfffdc3ab5
 ---> 23cf38d39df6
Step 6/18 : WORKDIR /src
 ---> Running in cb8e75edf59d
 ---> Removed intermediate container cb8e75edf59d
 ---> dfa832797f95
Step 7/18 : COPY ["ConsoleApp1/ConsoleApp1.csproj", "ConsoleApp1/"]
 ---> fe5e83d77b10
Step 8/18 : RUN dotnet restore "ConsoleApp1/ConsoleApp1.csproj"
 ---> Running in 9f88da574f4d
  Determining projects to restore...
  Restored /src/ConsoleApp1/ConsoleApp1.csproj (in 30 ms).
 ---> Removed intermediate container 9f88da574f4d
 ---> baae3238a9cf
Step 9/18 : COPY . .
 ---> 7dc666e6a2ee
Step 10/18 : WORKDIR "/src/ConsoleApp1"
 ---> Running in 4240fc49465c
 ---> Removed intermediate container 4240fc49465c
 ---> f8f72dc3c6c7
Step 11/18 : RUN dotnet build "ConsoleApp1.csproj" -c $BUILD_CONFIGURATION -o /app/build
 ---> Running in f68f6f61daaf
  Determining projects to restore...
  All projects are up-to-date for restore.
  ConsoleApp1 -> /app/build/ConsoleApp1.dll

Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:00:01.29
 ---> Removed intermediate container f68f6f61daaf
 ---> ef63b3d6c77b
Step 12/18 : FROM build AS publish
 ---> ef63b3d6c77b
Step 13/18 : ARG BUILD_CONFIGURATION=Release
 ---> Running in 95a56d8b3568
 ---> Removed intermediate container 95a56d8b3568
 ---> 6244878e585a
Step 14/18 : RUN dotnet publish "ConsoleApp1.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
 ---> Running in af610f47c410
  Determining projects to restore...
  All projects are up-to-date for restore.
  ConsoleApp1 -> /src/ConsoleApp1/bin/Release/net9.0/ConsoleApp1.dll
  ConsoleApp1 -> /app/publish/
 ---> Removed intermediate container af610f47c410
 ---> f247518c8acd
Step 15/18 : FROM base AS final
 ---> 15a74b37d1a2
Step 16/18 : WORKDIR /app
 ---> Running in 9cc039a91434
 ---> Removed intermediate container 9cc039a91434
 ---> 079f13cbb0c2
Step 17/18 : COPY --from=publish /app/publish .
 ---> 75ddb932d1c0
Step 18/18 : ENTRYPOINT ["dotnet", "ConsoleApp1.dll"]
 ---> Running in 09f7cbf5f7b2
 ---> Removed intermediate container 09f7cbf5f7b2
 ---> e6b145539e39
Successfully built e6b145539e39
10:04~/git/personal/sigill_dotnet_docker(alexaka1%) master 0$
Using `sha256:84fd557bebc64015e731aca1085b92c7619e49bdbe247e57392a43d92276f617` also worked fine
DEPRECATED: The legacy builder is deprecated and will be removed in a future release.
            BuildKit is currently disabled; enable it by removing the DOCKER_BUILDKIT=0
            environment-variable.

Sending build context to Docker daemon   7.68kB
Step 1/18 : FROM mcr.microsoft.com/dotnet/runtime:9.0 AS base
 ---> da09ba013a4c
Step 2/18 : USER $APP_UID
 ---> Running in 83df2537dad3
 ---> Removed intermediate container 83df2537dad3
 ---> f42287fa50a5
Step 3/18 : WORKDIR /app
 ---> Running in 33a97e99a251
 ---> Removed intermediate container 33a97e99a251
 ---> 8e3d3b53b7db
Step 4/18 : FROM mcr.microsoft.com/dotnet/sdk:9.0@sha256:84fd557bebc64015e731aca1085b92c7619e49bdbe247e57392a43d92276f617 AS build
9.0: Pulling from dotnet/sdk
Digest: sha256:84fd557bebc64015e731aca1085b92c7619e49bdbe247e57392a43d92276f617
Status: Downloaded newer image for mcr.microsoft.com/dotnet/sdk:9.0@sha256:84fd557bebc64015e731aca1085b92c7619e49bdbe247e57392a43d92276f617
 ---> 84fd557bebc6
Step 5/18 : ARG BUILD_CONFIGURATION=Release
 ---> Running in 6d62f9cbe4d9
 ---> Removed intermediate container 6d62f9cbe4d9
 ---> 248848a55ff0
Step 6/18 : WORKDIR /src
 ---> Running in f88c4fad6f64
 ---> Removed intermediate container f88c4fad6f64
 ---> d4e01eb750fa
Step 7/18 : COPY ["ConsoleApp1/ConsoleApp1.csproj", "ConsoleApp1/"]
 ---> 3710a0ad76a6
Step 8/18 : RUN dotnet restore "ConsoleApp1/ConsoleApp1.csproj"
 ---> Running in 022a1f64a88a
  Determining projects to restore...
  Restored /src/ConsoleApp1/ConsoleApp1.csproj (in 30 ms).
 ---> Removed intermediate container 022a1f64a88a
 ---> 4be25bc71ce4
Step 9/18 : COPY . .
 ---> 39e85ed18438
Step 10/18 : WORKDIR "/src/ConsoleApp1"
 ---> Running in 84e1c120b9cd
 ---> Removed intermediate container 84e1c120b9cd
 ---> 7af757585763
Step 11/18 : RUN dotnet build "ConsoleApp1.csproj" -c $BUILD_CONFIGURATION -o /app/build
 ---> Running in 41855929860f
  Determining projects to restore...
  All projects are up-to-date for restore.
  ConsoleApp1 -> /app/build/ConsoleApp1.dll

Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:00:01.29
 ---> Removed intermediate container 41855929860f
 ---> 13dfdcf23b92
Step 12/18 : FROM build AS publish
 ---> 13dfdcf23b92
Step 13/18 : ARG BUILD_CONFIGURATION=Release
 ---> Running in 55ee8ad017b9
 ---> Removed intermediate container 55ee8ad017b9
 ---> 5a9919b1861c
Step 14/18 : RUN dotnet publish "ConsoleApp1.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
 ---> Running in a3bbd989562f
  Determining projects to restore...
  All projects are up-to-date for restore.
  ConsoleApp1 -> /src/ConsoleApp1/bin/Release/net9.0/ConsoleApp1.dll
  ConsoleApp1 -> /app/publish/
 ---> Removed intermediate container a3bbd989562f
 ---> dd3e687e3caf
Step 15/18 : FROM base AS final
 ---> 8e3d3b53b7db
Step 16/18 : WORKDIR /app
 ---> Running in e6a6fe224667
 ---> Removed intermediate container e6a6fe224667
 ---> c639890234a5
Step 17/18 : COPY --from=publish /app/publish .
 ---> 9db3b469ac09
Step 18/18 : ENTRYPOINT ["dotnet", "ConsoleApp1.dll"]
 ---> Running in b56266b2d0a1
 ---> Removed intermediate container b56266b2d0a1
 ---> d81528788f1c
Successfully built d81528788f1c
Even with Buildkit it works.
docker build --no-cache --progress=plain .
#0 building with "desktop-linux" instance using docker driver

#1 [internal] load build definition from Dockerfile
#1 transferring dockerfile: 768B done
#1 DONE 0.0s

#2 [internal] load metadata for mcr.microsoft.com/dotnet/runtime:9.0
#2 DONE 0.2s

#3 [internal] load metadata for mcr.microsoft.com/dotnet/sdk:9.0@sha256:84fd557bebc64015e731aca1085b92c7619e49bdbe247e57392a43d92276f617
#3 DONE 0.2s

#4 [internal] load .dockerignore
#4 transferring context: 356B done
#4 DONE 0.0s

#5 [build 1/7] FROM mcr.microsoft.com/dotnet/sdk:9.0@sha256:84fd557bebc64015e731aca1085b92c7619e49bdbe247e57392a43d92276f617
#5 resolve mcr.microsoft.com/dotnet/sdk:9.0@sha256:84fd557bebc64015e731aca1085b92c7619e49bdbe247e57392a43d92276f617 0.0s done
#5 DONE 0.0s

#6 [build 2/7] WORKDIR /src
#6 CACHED

#7 [internal] load build context
#7 transferring context: 159B done
#7 DONE 0.0s

#8 [build 3/7] COPY [ConsoleApp1/ConsoleApp1.csproj, ConsoleApp1/]
#8 DONE 0.0s

#9 [base 1/2] FROM mcr.microsoft.com/dotnet/runtime:9.0@sha256:da09ba013a4ceb463e17b77c821acdd81d17f26384227340a31690d3bf0044bc
#9 resolve mcr.microsoft.com/dotnet/runtime:9.0@sha256:da09ba013a4ceb463e17b77c821acdd81d17f26384227340a31690d3bf0044bc
#9 ...

#10 [build 4/7] RUN dotnet restore "ConsoleApp1/ConsoleApp1.csproj"
#10 ...

#9 [base 1/2] FROM mcr.microsoft.com/dotnet/runtime:9.0@sha256:da09ba013a4ceb463e17b77c821acdd81d17f26384227340a31690d3bf0044bc
#9 resolve mcr.microsoft.com/dotnet/runtime:9.0@sha256:da09ba013a4ceb463e17b77c821acdd81d17f26384227340a31690d3bf0044bc 0.1s done
#9 DONE 0.1s

#11 [base 2/2] WORKDIR /app
#11 CACHED

#12 [final 1/2] WORKDIR /app
#12 CACHED

#10 [build 4/7] RUN dotnet restore "ConsoleApp1/ConsoleApp1.csproj"
#10 0.335   Determining projects to restore...
#10 0.483   Restored /src/ConsoleApp1/ConsoleApp1.csproj (in 23 ms).
#10 DONE 0.5s

#13 [build 5/7] COPY . .
#13 DONE 0.0s

#14 [build 6/7] WORKDIR /src/ConsoleApp1
#14 DONE 0.0s

#15 [build 7/7] RUN dotnet build "ConsoleApp1.csproj" -c Release -o /app/build
#15 0.356   Determining projects to restore...
#15 0.503   All projects are up-to-date for restore.
#15 1.337   ConsoleApp1 -> /app/build/ConsoleApp1.dll
#15 1.341
#15 1.341 Build succeeded.
#15 1.341     0 Warning(s)
#15 1.341     0 Error(s)
#15 1.342
#15 1.342 Time Elapsed 00:00:01.13
#15 DONE 1.4s

#16 [publish 1/1] RUN dotnet publish "ConsoleApp1.csproj" -c Release -o /app/publish /p:UseAppHost=false
#16 0.347   Determining projects to restore...
#16 0.490   All projects are up-to-date for restore.
#16 0.664   ConsoleApp1 -> /src/ConsoleApp1/bin/Release/net9.0/ConsoleApp1.dll
#16 0.678   ConsoleApp1 -> /app/publish/
#16 DONE 0.7s

#17 [final 2/2] COPY --from=publish /app/publish .
#17 DONE 0.0s

#18 exporting to image
#18 exporting layers 0.0s done
#18 exporting manifest sha256:2560fdad6ff44dd19a6855fbf28df8673d9cf0f0c3728b4a7ca008e34d6da36f done
#18 exporting config sha256:71393d8d4f612d0f57fe66020a848a4120ddb287b0a2947a44191f1005631ac2 done
#18 exporting attestation manifest sha256:3fcc589a4aae55e98e27f0031e9c6fd5c12327b252984a0cf919095792f2b4c1 done
#18 exporting manifest list sha256:b121de2c3e6dc8ca3f2a08723c7dfa739d8cc04d637d01301c2a0eb32fbb9099 done
#18 naming to moby-dangling@sha256:b121de2c3e6dc8ca3f2a08723c7dfa739d8cc04d637d01301c2a0eb32fbb9099 done
#18 unpacking to moby-dangling@sha256:b121de2c3e6dc8ca3f2a08723c7dfa739d8cc04d637d01301c2a0eb32fbb9099 done
#18 DONE 0.0s

View build details: docker-desktop://dashboard/build/desktop-linux/desktop-linux/l9t3f0cbj5wp5ovyc6kflq98g
10:12~/git/personal/sigill_dotnet_docker(alexaka1%) master 0$

@ksitarek
Copy link
Author

I have now gone back and used older mcr.microsoft.com/dotnet/sdk:9.0 images, like sha256:84fd557bebc64015e731aca1085b92c7619e49bdbe247e57392a43d92276f617 or sha256:6894a71619e08b47ef9df7ff1f436b21d21db160e5d864e180c294a53d7a12f2 and did a bunch of docker build --no-cache . runs after each other and I cannot replicate the crash. Maybe this was a Docker problem all this time? I have not considered this... (sorry), I know a couple of days ago there was an update, I'm on Docker Desktop 4.38.0 (181591); Engine: 27.5.1 which is the latest you can get on MacOS afaik.

@ksitarek I have cloned your repo. Keep in mind that

The legacy builder is deprecated and will be removed in a future release.
BuildKit is currently disabled; enable it by removing the DOCKER_BUILDKIT=0
environment-variable.
However even with that, It built successfully.
Using sha256:84fd557bebc64015e731aca1085b92c7619e49bdbe247e57392a43d92276f617 also worked fine
Even with Buildkit it works.

I tried several times on new Docker version and haven't observed any issue, thanks for letting me know - I abandoned docker for my project due to these issues. I guess its time to get back using it and observe more.

@alexaka1
Copy link

Although I would like to note to the maintainers, the issue only occurred with the mcr.microsoft.com/dotnet/sdk:9.0 images. Even on older Docker versions, .net 8 was working fine, in fact that was my workaround for a project, to build using the 8 image. This is what lead me to believe it was a .net issue. I commented on Jan 17. On that date I still definitely had the issue. I always use the latest Docker desktop on my mac. So I must have had 4.37.2. At a glance I don't see anything in 4.38.0 that would indicate a fix for something like this. Afaik it can't be downgraded simply because desktop installs a bunch of other stuff, I might have to reinstall Docker Desktop completely to downgrade, which I kinda don't want to do on my work computer ☹. So I can't test the older version to be 100% sure.

@mangod9
Copy link
Member

mangod9 commented Feb 21, 2025

so just to confirm, just updating the docker version made the issue no longer repro? It could still be a timing issue so getting a dump would certainly be useful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-VM-coreclr tenet-reliability Reliability/stability related issue (stress, load problems, etc.) untriaged New issue has not been triaged by the area owner
Projects
None yet
Development

No branches or pull requests

9 participants