You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first issue is that the socket file at /run/user/0/polykey/S.polykey-agent cannot be accessed. I am not sure what underlying architecture the nodejs image has but this makes sense if the path doesn't exist.
One solution is to change the socket path for the tests to a temporary directory, which seems to have worked for the CLI tests.
The other issue is that our tests rely on mock CA certificates from a locally run CA, I am not sure what the fix for this would be other than to either run our CA system in the image (which would require a nix image) or use an external one
The text was updated successfully, but these errors were encountered:
There was another issue that was occurring and that was the default shell was sometimes not set as process.env.SHELL in nodejs, so I gave it a default of sh if it couldn't find it. All tests are now passing in the nodejs docker image.
The gitlab-runner that gitlab uses seems to be different than the gitlab-runner that we can run in our local machine as the tests get stuck on gitlab. The tests run through just fine, it's just that some process prevents it from running through completely. The local gitlab-runner has no such issue.
The first issue is that the socket file at
/run/user/0/polykey/S.polykey-agent
cannot be accessed. I am not sure what underlying architecture the nodejs image has but this makes sense if the path doesn't exist.One solution is to change the socket path for the tests to a temporary directory, which seems to have worked for the CLI tests.
The other issue is that our tests rely on mock CA certificates from a locally run CA, I am not sure what the fix for this would be other than to either run our CA system in the image (which would require a nix image) or use an external one
The text was updated successfully, but these errors were encountered: