Fix structure again
the build failed
Details
the build failed
Details
This commit is contained in:
parent
331e7e0296
commit
7aaa9e588f
|
@ -13,18 +13,17 @@ pipeline:
|
|||
image: golang:latest
|
||||
group: build
|
||||
commands:
|
||||
- ls /go/src
|
||||
- mkdir -p build/i386
|
||||
- GOOS=linux GOARCH=386 go build -o build/i386/deb-simple gitea.meow.tf/tyler/deb-simple/main
|
||||
- GOOS=linux GOARCH=386 go build -o build/i386/deb-simple
|
||||
build-amd64:
|
||||
image: golang:latest
|
||||
group: build
|
||||
commands:
|
||||
- mkdir -p build/amd64
|
||||
- go build -o build/amd64/deb-simple gitea.meow.tf/tyler/deb-simple/main
|
||||
- go build -o build/amd64/deb-simple
|
||||
build-armv7:
|
||||
image: golang:latest
|
||||
group: build
|
||||
commands:
|
||||
- mkdir -p build/armv7
|
||||
- GOOS=linux GOARCH=arm GOARM=7 go build -o build/armv7/deb-simple gitea.meow.tf/tyler/deb-simple/main
|
||||
- GOOS=linux GOARCH=arm GOARM=7 go build -o build/armv7/deb-simple
|
2
apt.go
2
apt.go
|
@ -12,7 +12,7 @@ import (
|
|||
"encoding/hex"
|
||||
"golang.org/x/crypto/openpgp"
|
||||
"time"
|
||||
"gitea.meow.tf/deb-simple/deb/release"
|
||||
"gitea.meow.tf/tyler/deb-simple/deb/release"
|
||||
"path"
|
||||
)
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ import (
|
|||
"crypto/sha256"
|
||||
"github.com/blang/semver"
|
||||
"encoding/json"
|
||||
"gitea.meow.tf/deb-simple/deb/archive"
|
||||
"gitea.meow.tf/tyler/deb-simple/deb/archive"
|
||||
"path"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue