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
I am able to build loxicmd in BPFire chroot build environment, but not loxilb. this is unlikely bug in loxilb but golang in chroot build environment, but would like to know if there is workaround in loxilb to avoid this problem
two problems:
loxilb go.mod:3: invalid go version '1.22.0': must match format 1.23
BPFire has golang 1.20.4 installed in chroot build environment, loxilb go.mod has 1.22.0 requirement, it seems cause above mismatch? see error vincentmli/BPFire#19
loxilb main.go build error GOPROXY list is not the empty string
I upgraded BPFire golang from 1.20.4 to 1.22.0 to meet loxilb go.mod requirement, but then had this main.go:24:2: GOPROXY list is not the empty string, but contains no entries, see vincentmli/BPFire#17, google search shows golang upgrade could result in this problem, not sure how to workaround this issue.
To Reproduce
Steps to reproduce the behavior:
I can prepare the BPFire build tar balls (about 4 Gigabyte) if you are interested to reproduce
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment (please complete the following information):
OS: Ubuntu 22.04 to build BPFire loxilb addon in chroot
LoxiLB Version: 0.9.4-beta
Additional context
Add any other context or topology about the problem here.
it is better to build loxilb in BPFire chroot environment as BPFire software addon, build loxilb and copy binary to BPFire OS seems not ideal
The text was updated successfully, but these errors were encountered:
I used go mod vendor for loxilb and loxicmd to get the golang packages dependencies which created vendor under loxilb and loxicmd, this avoid to download the golang packages, and avoid the GOPROXY list is not the empty string issue
Describe the bug
I am able to build loxicmd in BPFire chroot build environment, but not loxilb. this is unlikely bug in loxilb but golang in chroot build environment, but would like to know if there is workaround in loxilb to avoid this problem
two problems:
BPFire has golang
1.20.4
installed in chroot build environment, loxilb go.mod has1.22.0
requirement, it seems cause above mismatch? see error vincentmli/BPFire#19I upgraded BPFire golang from
1.20.4
to1.22.0
to meet loxilb go.mod requirement, but then had thismain.go:24:2: GOPROXY list is not the empty string, but contains no entries
, see vincentmli/BPFire#17, google search shows golang upgrade could result in this problem, not sure how to workaround this issue.To Reproduce
Steps to reproduce the behavior:
I can prepare the BPFire build tar balls (about 4 Gigabyte) if you are interested to reproduce
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment (please complete the following information):
OS: Ubuntu 22.04 to build BPFire loxilb addon in chroot
LoxiLB Version: 0.9.4-beta
Additional context
Add any other context or topology about the problem here.
it is better to build loxilb in BPFire chroot environment as BPFire software addon, build loxilb and copy binary to BPFire OS seems not ideal
The text was updated successfully, but these errors were encountered: