File tree 3 files changed +19
-10
lines changed
3 files changed +19
-10
lines changed Original file line number Diff line number Diff line change 26
26
uses : actions/checkout@v4
27
27
-
28
28
name : Test
29
- uses : docker/bake-action@v5
29
+ uses : docker/bake-action@v6
30
30
with :
31
+ source : .
31
32
targets : test
32
33
-
33
34
name : Upload coverage
Original file line number Diff line number Diff line change 14
14
- ' master'
15
15
- ' releases/v*'
16
16
pull_request :
17
+ paths-ignore :
18
+ - ' .github/xgo-releases.json'
17
19
18
20
jobs :
19
21
prepare :
20
22
runs-on : ubuntu-latest
21
23
outputs :
22
- targets : ${{ steps.targets .outputs.matrix }}
24
+ targets : ${{ steps.generate .outputs.targets }}
23
25
steps :
24
26
-
25
27
name : Checkout
26
28
uses : actions/checkout@v4
27
29
-
28
- name : Targets matrix
29
- id : targets
30
- run : |
31
- echo "matrix=$(docker buildx bake validate --print | jq -cr '.group.validate.targets')" >> $GITHUB_OUTPUT
30
+ name : List targets
31
+ id : generate
32
+ uses : docker/bake-action/subaction/list-targets@v6
33
+ with :
34
+ target : validate
32
35
33
36
validate :
34
37
runs-on : ubuntu-latest
39
42
matrix :
40
43
target : ${{ fromJson(needs.prepare.outputs.targets) }}
41
44
steps :
42
- -
43
- name : Checkout
44
- uses : actions/checkout@v4
45
45
-
46
46
name : Validate
47
- uses : docker/bake-action@v5
47
+ uses : docker/bake-action@v6
48
48
with :
49
49
targets : ${{ matrix.target }}
Original file line number Diff line number Diff line change
1
+ target "_common" {
2
+ args = {
3
+ BUILDKIT_CONTEXT_KEEP_GIT_DIR = 1
4
+ }
5
+ }
6
+
1
7
group "default" {
2
8
targets = [" build" ]
3
9
}
@@ -17,6 +23,7 @@ target "build" {
17
23
}
18
24
19
25
target "build-validate" {
26
+ inherits = [" _common" ]
20
27
dockerfile = " dev.Dockerfile"
21
28
target = " build-validate"
22
29
output = [" type=cacheonly" ]
@@ -41,6 +48,7 @@ target "vendor-update" {
41
48
}
42
49
43
50
target "vendor-validate" {
51
+ inherits = [" _common" ]
44
52
dockerfile = " dev.Dockerfile"
45
53
target = " vendor-validate"
46
54
output = [" type=cacheonly" ]
You can’t perform that action at this time.
0 commit comments