Allow to compile Kopia cli on OpenBSD (#983)

* allow to compile Kopia cli on OpenBSD
This commit is contained in:
Denis Fondras
2021-04-13 21:45:04 +02:00
committed by GitHub
parent a50d314953
commit 2b6af55142
9 changed files with 10 additions and 8 deletions

View File

@@ -9,6 +9,7 @@ builds:
goos:
- linux
- freebsd
- openbsd
goarch:
- amd64
- arm
@@ -26,6 +27,7 @@ archives:
linux: linux
windows: windows
freebsd: freebsd-experimental
openbsd: openbsd-experimental
amd64: x64
name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}"
wrap_in_directory: true

View File

@@ -1,5 +1,5 @@
// +build !windows
// +build !amd64,!arm64,!arm darwin
// +build !amd64,!arm64,!arm darwin openbsd
package localfs

View File

@@ -1,4 +1,4 @@
// +build !windows
// +build !windows,!openbsd
// +build !darwin
// +build amd64 arm64 arm

View File

@@ -1,4 +1,4 @@
// +build !windows
// +build !windows,!openbsd
// Package fusemount implements FUSE filesystem nodes for mounting contents of filesystem stored in repository.
//

View File

@@ -1,4 +1,4 @@
// +build !windows,!freebsd
// +build !windows,!freebsd,!openbsd
package mount

View File

@@ -1,4 +1,4 @@
// +build !windows,!freebsd
// +build !windows,!freebsd,!openbsd
package mount

View File

@@ -1,4 +1,4 @@
// +build freebsd
// +build freebsd openbsd
package mount

View File

@@ -1,4 +1,4 @@
// +build !windows,!darwin
// +build !windows,!darwin,!openbsd
package ospath

View File

@@ -1,4 +1,4 @@
// +build linux freebsd
// +build linux freebsd openbsd
package restore