Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The CircleCI go build images' toolchain depends on a version of GLIBC that is higher than the version that ships on Ubuntu 20.04. This means users trying to install the released binaries on Ubuntu 20.04 will see: ``` $ bashgpt bashgpt: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by bashgpt) bashgpt: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by bashgpt) ``` This commit attempts to mitigate the problem by building w/ CGO_ENABLED=0 as suggested by: golang/go#57328
- Loading branch information