You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I run make integration-test and I get the following output:
++ GCS_BUCKET=gs://kaniko-test-bucket
++ IMAGE_REPO=gcr.io/kaniko-test
++ '[' -f /common.sh ']'
++ echo 'Running integration tests...'
Running integration tests...
++ make out/executor
make[1]: Entering directory '/home/victor/go/src/github.com/GoogleContainerTools/kaniko'
make[1]: 'out/executor' is up to date.
make[1]: Leaving directory '/home/victor/go/src/github.com/GoogleContainerTools/kaniko'
++ make out/warmer
make[1]: Entering directory '/home/victor/go/src/github.com/GoogleContainerTools/kaniko'
GOARCH=amd64 GOOS=linux CGO_ENABLED=0 go build -ldflags '-extldflags "-static" -X .version=v0.12.0 -w -s ' -o out/warmer github.com/GoogleContainerTools/kaniko/cmd/warmer
make[1]: Leaving directory '/home/victor/go/src/github.com/GoogleContainerTools/kaniko'
++ pushd integration
~/go/src/github.com/GoogleContainerTools/kaniko/integration ~/go/src/github.com/GoogleContainerTools/kaniko
++ go test -v --bucket gs://kaniko-test-bucket --repo gcr.io/kaniko-test --timeout 30m
flag provided but not defined: -test.v
Usage of /tmp/go-build265984142/b001/integration.test:
-alsologtostderr
log to standard error as well as files
-bucket integration
The gcs bucket argument to uploaded the tar-ed contents of the integration dir to. (default "gs://kaniko-test-bucket")
-log_backtrace_at value
when logging hits line file:N, emit a stack trace
-log_dir string
If non-empty, write log files in this directory
-logtostderr
log to standard error instead of files
-repo gcloud
The (docker) image repo to build and push images to during the test. gcloud must be authenticated with this repo. (default "gcr.io/kaniko-test")
-stderrthreshold value
logs at or above this threshold go to stderr
-v value
log level for V logs
-vmodule value
comma-separated list of pattern=N settings for file-filtered logging
exit status 2
FAIL github.com/GoogleContainerTools/kaniko/integration 0.010s
make: *** [Makefile:54: integration-test] Error 1
Expected behavior
Either the tests are not working or I'm doing something wrong. I have no way to know if there are things I need to setup beforehand. For the record I just ran dep ensure before running the integration tests.
Additional Information
Using go version go1.13 linux/amd64 on archlinux
The text was updated successfully, but these errors were encountered:
@tejal29 ah indeed, thanks for the feedback, I thought it was just me doing something wrong :)
I will try to see if I can, I'm not clear with go how to change the currently used go version (in js I would use nvm for example, in python pyenv, but in go I have no idea and my linux distribution is using 1.13.1.
Actual behavior
I run
make integration-test
and I get the following output:Expected behavior
Either the tests are not working or I'm doing something wrong. I have no way to know if there are things I need to setup beforehand. For the record I just ran
dep ensure
before running the integration tests.Additional Information
Using go version go1.13 linux/amd64 on archlinux
The text was updated successfully, but these errors were encountered: