adding a vagrantfile for testing. Adding 32bit version of binary for freebsd.
This commit is contained in:
@@ -10,7 +10,7 @@ BINARY=\
|
|||||||
|
|
||||||
|
|
||||||
.PHONY: all $(BINARY)
|
.PHONY: all $(BINARY)
|
||||||
all: $(BINARY) windows/amd64 freebsd/amd64
|
all: $(BINARY) windows/amd64 freebsd/amd64 freebsd/386
|
||||||
|
|
||||||
$(BINARY): OS = $(word 1,$(subst /, ,$*))
|
$(BINARY): OS = $(word 1,$(subst /, ,$*))
|
||||||
$(BINARY): ARCH = $(word 2,$(subst /, ,$*))
|
$(BINARY): ARCH = $(word 2,$(subst /, ,$*))
|
||||||
@@ -60,5 +60,29 @@ freebsd/amd64:
|
|||||||
file "/build/scrutiny-collector-metrics-$(OS)-$(ARCH)" || true
|
file "/build/scrutiny-collector-metrics-$(OS)-$(ARCH)" || true
|
||||||
ldd "/build/scrutiny-collector-metrics-$(OS)-$(ARCH)" || true
|
ldd "/build/scrutiny-collector-metrics-$(OS)-$(ARCH)" || true
|
||||||
|
|
||||||
|
freebsd/amd64: OS = freebsd
|
||||||
|
freebsd/amd64: ARCH = 386
|
||||||
|
freebsd/amd64: GOOS = freebsd
|
||||||
|
freebsd/amd64: GOARCH = 386
|
||||||
|
freebsd/amd64: CGO_ENABLED = 1
|
||||||
|
freebsd/amd64:
|
||||||
|
mkdir -p /build
|
||||||
|
env
|
||||||
|
@echo "building web binary (OS = $(OS), ARCH = $(ARCH))"
|
||||||
|
go build -ldflags "-extldflags=-static -X main.goos=$(OS) -X main.goarch=$(ARCH)" -o /build/scrutiny-web-$(OS)-$(ARCH) -tags "static netgo sqlite_omit_load_extension" webapp/backend/cmd/scrutiny/scrutiny.go
|
||||||
|
|
||||||
|
chmod +x "/build/scrutiny-web-$(OS)-$(ARCH)"
|
||||||
|
file "/build/scrutiny-web-$(OS)-$(ARCH)" || true
|
||||||
|
ldd "/build/scrutiny-web-$(OS)-$(ARCH)" || true
|
||||||
|
|
||||||
|
@echo "building collector binary (OS = $(OS), ARCH = $(ARCH))"
|
||||||
|
go build -ldflags "-extldflags=-static -X main.goos=$(OS) -X main.goarch=$(ARCH)" -o /build/scrutiny-collector-metrics-$(OS)-$(ARCH) -tags "static netgo" collector/cmd/collector-metrics/collector-metrics.go
|
||||||
|
|
||||||
|
chmod +x "/build/scrutiny-collector-metrics-$(OS)-$(ARCH)"
|
||||||
|
file "/build/scrutiny-collector-metrics-$(OS)-$(ARCH)" || true
|
||||||
|
ldd "/build/scrutiny-collector-metrics-$(OS)-$(ARCH)" || true
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# clean:
|
# clean:
|
||||||
# rm scrutiny-collector-metrics-* scrutiny-web-*
|
# rm scrutiny-collector-metrics-* scrutiny-web-*
|
||||||
|
|||||||
Vendored
+16
@@ -0,0 +1,16 @@
|
|||||||
|
Vagrant.configure("2") do |config|
|
||||||
|
config.vm.guest = :freebsd
|
||||||
|
config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", disabled: true
|
||||||
|
config.vm.box = "freebsd/FreeBSD-11.0-CURRENT"
|
||||||
|
config.ssh.shell = "sh"
|
||||||
|
config.vm.base_mac = "080027D14C66"
|
||||||
|
|
||||||
|
config.vm.provider :virtualbox do |vb|
|
||||||
|
vb.customize ["modifyvm", :id, "--memory", "1024"]
|
||||||
|
vb.customize ["modifyvm", :id, "--cpus", "1"]
|
||||||
|
vb.customize ["modifyvm", :id, "--hwvirtex", "on"]
|
||||||
|
vb.customize ["modifyvm", :id, "--audio", "none"]
|
||||||
|
vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
|
||||||
|
vb.customize ["modifyvm", :id, "--nictype2", "virtio"]
|
||||||
|
end
|
||||||
|
end
|
||||||
Reference in New Issue
Block a user