k1LoW / tbls

tbls is a CI-Friendly tool for document a database, written in Go.
MIT License
3.43k stars 166 forks source link

Fix linux arm64 release build #512

Closed mmizutani closed 1 year ago

mmizutani commented 1 year ago

The Linux arm64 arch build requires installing an additional OS package gcc-aarch64-linux-gnu. I have altered the CI test (dry-run) config file to install this package in the PR #510, but I forgot to also update the CI config file for real (non-dry-run) releases.

This PR resolves the error during the last release build for Linux caused by this omission.

cgo: C compiler "aarch64-linux-gnu-gcc" not found: exec: "aarch64-linux-gnu-gcc": executable file not found in $PATH

k1LoW commented 1 year ago

oh...Thank you!