From 93c3eb6ebebca983cb51e4a9530a09c58a2ada3d Mon Sep 17 00:00:00 2001 From: Andrew Lock Date: Wed, 23 Oct 2024 15:28:13 +0100 Subject: [PATCH] Fix requirements.json test (#6186) ## Summary of changes Fixes the allow list test ## Reason for change In #6182 I backported the SSI list, but annoyingly looks like the test was wrong, which has broken it ## Implementation details Fix the test ## Test coverage The test didn't run previously for "reasons". It _should_ run now --- tracer/build/artifacts/requirements_block.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracer/build/artifacts/requirements_block.json b/tracer/build/artifacts/requirements_block.json index f06059b64de4..899164af8c4b 100644 --- a/tracer/build/artifacts/requirements_block.json +++ b/tracer/build/artifacts/requirements_block.json @@ -6,7 +6,7 @@ {"name": "unsupported 2.x.x glibc x64","filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "arm64", "libc": "glibc:2.22.9"}}, {"name": "glibx x86","filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "x86", "libc": "glibc:2.23"}}, {"name": "musl x86","filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "x86", "libc": "musl:1.2.2"}}, - {"name": "musl arm64", "filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "x64", "libc": "musl:1.2.2"}}, + {"name": "musl arm64", "filepath": "/some/path", "args": [], "envars": [], "host": {"os": "linux", "arch": "arm64", "libc": "musl:1.2.2"}}, {"name": "dotnet-core-uninstall","filepath": "/some/path/to/dotnet-core-uninstall", "args": ["/some/path/to/dotnet-core-uninstall"], "envars": [], "host": {"os": "windows", "arch": "x64"}}, {"name": "dotnet-core-uninstall with flags","filepath": "/some/path/to/dotnet-core-uninstall", "args": ["/some/path/to/dotnet-core-uninstall", "-a", "--force"], "envars": [], "host": {"os": "windows", "arch": "x64"}}, {"name": "dotnet msbuild","filepath": "/pathto/dotnet", "args": ["/pathto/dotnet", "msbuild", "myproj.csproj"], "envars": [], "host": {"os": "windows", "arch": "x64"}},