Commit 8277c90 1 parent 980c561 commit 8277c90 Copy full SHA for 8277c90
File tree 6 files changed +74
-5
lines changed
infrastructure/containerd
6 files changed +74
-5
lines changed Original file line number Diff line number Diff line change @@ -113,3 +113,5 @@ linters:
113
113
- mnd
114
114
- wsl
115
115
- wrapcheck
116
+ - exportloopref # deprecated
117
+ - execinquery # deprecated
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://raw.githubusercontent.com/jetify-com/devbox/0.10.7/.schema/devbox.schema.json" ,
3
+ "packages" : [" go@1.23.1" ],
4
+ "shell" : {
5
+ "init_hook" : [
6
+ " echo 'Welcome to devbox!' > /dev/null"
7
+ ],
8
+ "scripts" : {
9
+ "test" : [
10
+ " echo \" Error: no test specified\" && exit 1"
11
+ ]
12
+ }
13
+ }
14
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "lockfile_version": "1",
3
+ "packages": {
4
+ "go@1.23.1": {
5
+ "last_modified": "2024-09-10T15:01:03Z",
6
+ "resolved": "github:NixOS/nixpkgs/5ed627539ac84809c78b2dd6d26a5cebeb5ae269#go_1_23",
7
+ "source": "devbox-search",
8
+ "version": "1.23.1",
9
+ "systems": {
10
+ "aarch64-darwin": {
11
+ "outputs": [
12
+ {
13
+ "name": "out",
14
+ "path": "/nix/store/nvaay1c4banbccyvv6ba1gzyqpypjmfq-go-1.23.1",
15
+ "default": true
16
+ }
17
+ ],
18
+ "store_path": "/nix/store/nvaay1c4banbccyvv6ba1gzyqpypjmfq-go-1.23.1"
19
+ },
20
+ "aarch64-linux": {
21
+ "outputs": [
22
+ {
23
+ "name": "out",
24
+ "path": "/nix/store/9ylsay11jb3p6yarkmlz0fin76cdypwa-go-1.23.1",
25
+ "default": true
26
+ }
27
+ ],
28
+ "store_path": "/nix/store/9ylsay11jb3p6yarkmlz0fin76cdypwa-go-1.23.1"
29
+ },
30
+ "x86_64-darwin": {
31
+ "outputs": [
32
+ {
33
+ "name": "out",
34
+ "path": "/nix/store/zkg5xhyx2rs03dq0qp14nqlx9ff1y5c5-go-1.23.1",
35
+ "default": true
36
+ }
37
+ ],
38
+ "store_path": "/nix/store/zkg5xhyx2rs03dq0qp14nqlx9ff1y5c5-go-1.23.1"
39
+ },
40
+ "x86_64-linux": {
41
+ "outputs": [
42
+ {
43
+ "name": "out",
44
+ "path": "/nix/store/mi0ybwsm6pmxzv9hsm6bcbqaq1pkf8wh-go-1.23.1",
45
+ "default": true
46
+ }
47
+ ],
48
+ "store_path": "/nix/store/mi0ybwsm6pmxzv9hsm6bcbqaq1pkf8wh-go-1.23.1"
49
+ }
50
+ }
51
+ }
52
+ }
53
+ }
Original file line number Diff line number Diff line change 1
1
module github.com/liquidmetal-dev/flintlock/hack/tools
2
2
3
- go 1.22.1
3
+ go 1.23
4
4
5
- toolchain go1.22.6
5
+ toolchain go1.23.1
6
6
7
7
require (
8
8
github.com/golang/mock v1.6.0
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ import (
7
7
"github.com/sirupsen/logrus"
8
8
9
9
"github.com/containerd/containerd"
10
- "github.com/containerd/containerd/errdefs"
11
10
"github.com/containerd/containerd/mount"
12
11
"github.com/containerd/containerd/namespaces"
13
12
"github.com/containerd/containerd/snapshots"
13
+ "github.com/containerd/errdefs"
14
14
"github.com/opencontainers/image-spec/identity"
15
15
16
16
"github.com/liquidmetal-dev/flintlock/core/models"
Original file line number Diff line number Diff line change @@ -49,8 +49,8 @@ func TestValidation_Invalid(t *testing.T) {
49
49
vmspec models.MicroVM
50
50
}{
51
51
{
52
- name : "nil spec should fail validation with 5 errors" ,
53
- numErrors : 6 ,
52
+ name : "nil spec should fail validation with 4 errors" ,
53
+ numErrors : 4 ,
54
54
vmspec : models.MicroVM {},
55
55
},
56
56
{
You can’t perform that action at this time.
0 commit comments