no need to rebuild these

This commit is contained in:
Max Howell 2022-09-02 11:00:33 -04:00
parent 42a666304d
commit 45db4c1899
2 changed files with 10 additions and 11 deletions

View file

@ -16,8 +16,10 @@ build:
tea.xyz/gx/make: '*'
script: |
./configure --prefix={{prefix}}
make --jobs {{hw.concurrency}} install
make --jobs {{hw.concurrency}} install $ARGS
env:
V: 1
ARGS:
- NO_TCLTK=1
test:
script:
git --version
test: git --version #FIXME better

View file

@ -20,12 +20,10 @@ build:
tea.xyz/gx/make: '*'
tea.xyz/gx/cc: c99
curl.se: '*'
nixos.org/patchelf: ^0.15
script: |-
export GOROOT_BOOTSTRAP="$(cd ../.. && echo $PWD)/bootstrap"
if test -d $GOROOT_BOOTSTRAP
then
true
else
if test ! -d $GOROOT_BOOTSTRAP; then
# TODO something better than this...
case "X{{ hw.target }}" in
"Xaarch64-apple-darwin") GOARCH="darwin-arm64";;
@ -41,7 +39,6 @@ build:
mv ../../go ../../bootstrap
fi
export GOROOT_BOOTSTRAP="$(cd ../.. && echo $PWD)/bootstrap"
export GOROOT_FINAL="{{ prefix }}"
cd src
./make.bash
@ -64,5 +61,5 @@ test:
package main
import "fmt"
func main() {
fmt.Println("Hello World")
}
fmt.Println("Hello World")
}