5 lines
259 B
Bash
Executable file
5 lines
259 B
Bash
Executable file
#!/bin/sh
|
|
|
|
VERSION=${DRONE_BUILD_NUMBER}
|
|
CGO_ENABLED=0 GOOS=linux go build -v -a -gcflags '-e' -ldflags "-X main.version=$VERSION -s -w" -o db db.go
|
|
CGO_ENABLED=0 GOOS=linux go build -v -a -gcflags '-e' -ldflags "-X main.version=$VERSION -s -w" -o srv srv.go
|