Hello,
for a while now I am receiving a segfault-error when executing a console-application using dotnet run
. I honestly can’t tell you what caused it but from one moment to the other it has been like that.
The script being executed looks like this:
#!/usr/bin/env bash
export scaffold_path=src/Etdb.UserService.Scaffolder/Etdb.UserService.Scaffolder.csproj
echo running context scaffold
dotnet run --project ${scaffold_path}
The source-code can be found here and that is one recent job.
I tried everything in my power, it works fine locally but always fails with error-code 139 when running in travis-ci. The console-app currently just prints hello-world
. I changed the project being called to this simple app to make sure it was not related to the initial application I had been calling.
Any help would be appreciated.