File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,16 @@ permissions:
21
21
contents : none
22
22
23
23
jobs :
24
- build-and-push- builder-image :
24
+ builder-image :
25
25
runs-on : ubuntu-latest
26
26
permissions :
27
27
contents : read
28
28
packages : write
29
+ strategy :
30
+ matrix :
31
+ libc :
32
+ - gnu
33
+ - musl
29
34
steps :
30
35
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
31
36
- uses : extractions/setup-just@e33e0265a09d6d736e2ee1e0eb685ef1de4669ff # v3
@@ -39,10 +44,13 @@ jobs:
39
44
40
45
- name : Build builder image
41
46
env :
47
+ BUILDER_TYPE : ${{ matrix.libc }}
42
48
BUILDER_IMAGE_ARG_CARGO_PGRX_VERSION : ${{ inputs.cargo-pgrx-version || '0.12.5' }}
43
49
run : |
44
50
just build-builder-image
45
51
46
52
- name : Push builder image
53
+ env :
54
+ BUILDER_TYPE : ${{ matrix.libc }}
47
55
run : |
48
56
just push-builder-image
You can’t perform that action at this time.
0 commit comments