mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
fix tilt.dev (#4175)
* fix tilt.dev * no gcc? * Revert "no gcc?" This reverts commit 7981e99ae371a6203da73650585a8df8c079b822. * should be able to use clang * CXX too * maybe this? * hm * wip * let's try gcc, then * sigh * lock go version * go~1.20 * LD: ld.lld * maybe * last try * use ld.gold * use gcc+ld.gold on linux/aarch64 --------- Co-authored-by: Jacob Heider <jacob@pkgx.dev>
This commit is contained in:
parent
b61d448e4e
commit
532a11d6d4
1 changed files with 10 additions and 9 deletions
|
@ -10,12 +10,16 @@ provides:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
dependencies:
|
dependencies:
|
||||||
go.dev: ^1.19
|
go.dev: ~1.20 # per go.mod
|
||||||
# python.org: "3.11"
|
nodejs.org: ^20
|
||||||
script: |
|
classic.yarnpkg.com: "*"
|
||||||
go mod download
|
linux/aarch64:
|
||||||
mkdir -p "{{ prefix }}"/bin
|
gnu.org/gcc: '*' # cgo _really_ wants g++/ld.gold
|
||||||
go build -v -trimpath -ldflags="$LDFLAGS" -o $BUILDLOC ./cmd/tilt
|
script:
|
||||||
|
- make build-js
|
||||||
|
- go mod download
|
||||||
|
- mkdir -p "{{ prefix }}"/bin
|
||||||
|
- go build -v -trimpath -ldflags="$LDFLAGS" -o $BUILDLOC ./cmd/tilt
|
||||||
env:
|
env:
|
||||||
GOPROXY: https://proxy.golang.org,direct
|
GOPROXY: https://proxy.golang.org,direct
|
||||||
GOSUMDB: sum.golang.org
|
GOSUMDB: sum.golang.org
|
||||||
|
@ -26,9 +30,6 @@ build:
|
||||||
- -s
|
- -s
|
||||||
- -w
|
- -w
|
||||||
- -X main.version={{version}}
|
- -X main.version={{version}}
|
||||||
# - -X main.commit={{.Commit}}
|
|
||||||
# - -X main.date={{.Date}}
|
|
||||||
- -X main.builtBy=pkgx
|
|
||||||
linux:
|
linux:
|
||||||
# or segmentation fault
|
# or segmentation fault
|
||||||
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
||||||
|
|
Loading…
Reference in a new issue