Commit cd2f1b0
s-a
fix(ci): Add symlink for libdl.so on Linux runner
This commit resolves a `System.DllNotFoundException` for `libdl.so` that
was causing all tests to fail on the Linux platform.
The .NET runtime on the GitHub `ubuntu-latest` runner was unable to locate
the dynamic linking library `libdl.so` in its standard search paths, even
though it is present on the system via the `libc6-dev` package.
This fix adds a command to the "Install Linux dependencies" step to create
a symbolic link from the actual library location to a path where the .NET
runtime can find it. This unblocks the native library loader and allows
the tests to run successfully.1 parent 5e9d63e commit cd2f1b0
1 file changed
+3
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
| 55 | + | |
| 56 | + | |
55 | 57 | | |
56 | 58 | | |
57 | 59 | | |
| |||
64 | 66 | | |
65 | 67 | | |
66 | 68 | | |
67 | | - | |
68 | | - | |
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
| |||
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
79 | | - | |
80 | | - | |
81 | 79 | | |
82 | 80 | | |
83 | 81 | | |
| |||
132 | 130 | | |
133 | 131 | | |
134 | 132 | | |
| 133 | + | |
135 | 134 | | |
136 | 135 | | |
137 | 136 | | |
| |||
0 commit comments