-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtest.go
More file actions
27 lines (25 loc) · 775 Bytes
/
test.go
File metadata and controls
27 lines (25 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package testissuemz480
import "github.com/osscontainertools/kaniko/golden/types"
var Tests = types.GoldenTests{
Name: "test_issue_mz480",
Dockerfile: "Dockerfile",
Tests: []types.GoldenTest{
{
Args: []string{"--target=final", "--destination=registry"},
// TODO: clean after "base" stage is unnecesary
Plan: "final",
},
{
Args: []string{"--target=final", "--target=build", "--destination=registry"},
// TODO: clean after "base" stage is unnecesary
Plan: "final",
},
{
Args: []string{"--target=final", "--target=test", "--destination=registry"},
// TODO: clean after "base" stage is unnecesary
// TODO: saving the "final" stage is unnecessary
// TODO: clean after "final" stage is unnecesary
Plan: "final_test",
},
},
}