mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-29 20:24:31 +00:00
misc: Update for new GitHub organisation name
`govmm` is now part of the `kata-containers` GitHub organisation, so update to reflect this. Fixes: #145. Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
parent
6fa954a506
commit
9f309c2aa1
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
@ -16,7 +16,7 @@ jobs:
|
||||
go-version: ${{ matrix.go-version }}
|
||||
- name: Setup GOPATH
|
||||
run: |
|
||||
gopath_org=$(go env GOPATH)/src/github.com/intel/
|
||||
gopath_org=$(go env GOPATH)/src/github.com/kata-containers/
|
||||
mkdir -p ${gopath_org}
|
||||
ln -s ${PWD} ${gopath_org}
|
||||
- name: Checkout code
|
||||
@ -27,14 +27,14 @@ jobs:
|
||||
$(go env GOPATH)/bin/gometalinter --install
|
||||
- name: Running gometalinter
|
||||
run: |
|
||||
gopath_repo=$(go env GOPATH)/src/github.com/intel/govmm
|
||||
gopath_repo=$(go env GOPATH)/src/github.com/kata-containers/govmm
|
||||
pushd ${gopath_repo}
|
||||
$(go env GOPATH)/bin/gometalinter --tests --vendor --disable-all --enable=misspell --enable=vet --enable=ineffassign --enable=gofmt --enable=gocyclo --cyclo-over=15 --enable=golint --enable=errcheck --enable=deadcode --enable=staticcheck -enable=gas ./...
|
||||
- name: Send coverage
|
||||
env:
|
||||
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
gopath_repo=$(go env GOPATH)/src/github.com/intel/govmm
|
||||
gopath_repo=$(go env GOPATH)/src/github.com/kata-containers/govmm
|
||||
pushd ${gopath_repo}
|
||||
go get github.com/mattn/goveralls
|
||||
$(go env GOPATH)/bin/goveralls -v -service=github
|
||||
|
@ -7,7 +7,7 @@ go:
|
||||
arch:
|
||||
- s390x
|
||||
|
||||
go_import_path: github.com/intel/govmm
|
||||
go_import_path: github.com/kata-containers/govmm
|
||||
|
||||
matrix:
|
||||
allow_failures:
|
||||
|
@ -85,12 +85,12 @@ We accept github pull requests.
|
||||
We request you give quality assurance some consideration by:
|
||||
|
||||
* Adding go unit tests for changes where it makes sense.
|
||||
* Enabling [Travis CI](https://travis-ci.org/intel/govmm) on your github fork of Virtual Machine Manager for Go to get continuous integration feedback on your dev/test branches.
|
||||
* Enabling [Travis CI](https://travis-ci.org/kata-containers/govmm) on your github fork of Virtual Machine Manager for Go to get continuous integration feedback on your dev/test branches.
|
||||
|
||||
## Issue tracking
|
||||
|
||||
If you have a problem, please let us know. If it's a bug not already documented, by all means please [open an
|
||||
issue in github](https://github.com/intel/govmm/issues/new) so we all get visibility
|
||||
issue in github](https://github.com/kata-containers/govmm/issues/new) so we all get visibility
|
||||
the problem and work toward resolution.
|
||||
|
||||
Any security issues discovered with govmm should be reported by following the instructions on https://01.org/security.
|
||||
|
10
README.md
10
README.md
@ -1,14 +1,14 @@
|
||||
# Virtual Machine Manager for Go
|
||||
|
||||
[](https://goreportcard.com/report/github.com/intel/govmm)
|
||||
[](https://travis-ci.org/intel/govmm)
|
||||
[](https://godoc.org/github.com/intel/govmm/qemu)
|
||||
[](https://coveralls.io/github/intel/govmm?branch=master)
|
||||
[](https://goreportcard.com/report/github.com/kata-containers/govmm)
|
||||
[](https://travis-ci.org/kata-containers/govmm)
|
||||
[](https://godoc.org/github.com/kata-containers/govmm/qemu)
|
||||
[](https://coveralls.io/github/kata-containers/govmm?branch=master)
|
||||
|
||||
Virtual Machine Manager for Go (govmm) is a suite of packages that
|
||||
provide Go APIs for creating and managing virtual machines. There's
|
||||
currently support for only one hypervisor, qemu/kvm, support for which
|
||||
is provided by the github.com/intel/govmm/qemu package.
|
||||
is provided by the github.com/kata-containers/govmm/qemu package.
|
||||
|
||||
The qemu package provides APIs for launching qemu instances and for
|
||||
managing those instances via QMP, once launched. VM instances can
|
||||
|
@ -21,7 +21,7 @@ import (
|
||||
|
||||
"context"
|
||||
|
||||
"github.com/intel/govmm/qemu"
|
||||
"github.com/kata-containers/govmm/qemu"
|
||||
)
|
||||
|
||||
func Example() {
|
||||
|
Loading…
Reference in New Issue
Block a user