tobiipro / support-firecloud

Software and configuration that support TobiiPro's Cloud Services development.
Apache License 2.0
4 stars 1 forks source link

Build awslogs from source to avoid bug in bottle. #166

Closed weetmuts closed 4 years ago

weetmuts commented 4 years ago

When trying to run awslogs, the error message:

error while loading shared libraries: libpython3.8.so.1.0: cannot open shared object file: No such file or directory

means that linux homebrew is downloading the latest awslogs bottle, which unfortunately has a broken shared library reference. Building from souce solves this problem.

andreineculau commented 4 years ago

👋 if you want more stability, you can simply use the old bottle by replacing awslogs with https://raw.githubusercontent.com/Homebrew/linuxbrew-core/950f68feb41bcb26a4e2d3b5cdfba4224bf7bf74/Formula/awslogs.rb in the same file.

andreineculau commented 4 years ago

I believe nobody uses awslogs, and there's no CI flow that uses it AFAIK, and if there is, they can install it specifically in Brewfile.inc.sh. So removing it is also a good option.

weetmuts commented 4 years ago

I believe nobody uses awslogs, and there's no CI flow that uses it AFAIK, and if there is, they can install it specifically in Brewfile.inc.sh. So removing it is also a good option.

If it is not used, then removing it is much better!

weetmuts commented 4 years ago

Lets jump to this pull request instead: https://github.com/tobiipro/support-firecloud/pull/167 Removing awslogs is better.