We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 03db4d6 + 75e0219 commit 7a017afCopy full SHA for 7a017af
tests/integration/spec.bats
@@ -31,11 +31,11 @@ function teardown() {
31
32
git clone https://github.com/opencontainers/runtime-spec.git
33
(cd runtime-spec && git reset --hard "$SPEC_REF")
34
- SCHEMA='runtime-spec/schema/config-schema.json'
35
- [ -e "$SCHEMA" ]
36
37
- GO111MODULE=auto go get github.com/xeipuuv/gojsonschema
38
- GO111MODULE=auto go build runtime-spec/schema/validate.go
+ cd runtime-spec/schema
+ go mod init runtime-spec
+ go mod tidy
+ go build ./validate.go
39
40
- ./validate "$SCHEMA" config.json
+ ./validate config-schema.json ../../config.json
41
}
0 commit comments