Browse Source

Fixed: Correct Platform Build Tags

layerset
Till Wegmüller 6 years ago
parent
commit
f1579d75c4
  1. 2
      Jenkinsfile
  2. 2
      bootadm/config.go
  3. 2
      bootadm/install.go
  4. 2
      bootadm/update-archive.go
  5. 2
      image/build_test.go
  6. 2
      installd/copyfile.go
  7. 2
      installd/devfsadm.go
  8. 2
      installd/filesystem.go
  9. 2
      installd/install.go
  10. 2
      installd/system_links.go

2
Jenkinsfile vendored

@ -23,7 +23,7 @@ node {
sh 'go vet'
sh 'go test -v ./... | go-junit-report > report.xml'
junit allowEmptyResults: true, testResults: 'report.xml'
sh 'go test -cover'
sh 'go test ./... -cover'
}

2
bootadm/config.go

@ -1,3 +1,5 @@
// +build solaris
package bootadm
import (

2
bootadm/install.go

@ -1,3 +1,5 @@
// +build solaris
package bootadm
import (

2
bootadm/update-archive.go

@ -1,3 +1,5 @@
// +build solaris
package bootadm
func UpdateBootArchive(rootDir string) error {

2
image/build_test.go

@ -1,3 +1,5 @@
// +build solaris
package image
import (

2
installd/copyfile.go

@ -1,3 +1,5 @@
// +build solaris
package installd
import (

2
installd/devfsadm.go

@ -1,3 +1,5 @@
// +build solaris
package installd
import "os/exec"

2
installd/filesystem.go

@ -1,3 +1,5 @@
// +build solaris
package installd
import (

2
installd/install.go

@ -1,3 +1,5 @@
// +build solaris
package installd
import (

2
installd/system_links.go

@ -1,3 +1,5 @@
// +build solaris
package installd
import (

Loading…
Cancel
Save