Skip to content

Commit 12d0396

Browse files
committed
clean matrix ..
1 parent 8d03a6a commit 12d0396

File tree

1 file changed

+12
-31
lines changed

1 file changed

+12
-31
lines changed

.github/workflows/buildx.yml

+12-31
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,15 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
#
20-
platforms: ['linux/arm64','linux/arm/v7','linux/arm/v6','linux/386','linux/ppc64le','linux/mips64le','linux/s390x']
20+
platforms: ['linux/arm64','linux/arm/v7','linux/arm/v6','linux/386','linux/ppc64le']
21+
#
22+
# platforms: ['linux/arm64','linux/arm/v7','linux/arm/v6','linux/386','linux/mips64le','linux/ppc64le','linux/s390x']
2123
#
22-
#platforms: ['linux/arm64','linux/arm/v7','linux/arm/v5','linux/386','linux/mips64le','linux/ppc64le','linux/s390x']
2324
# comments:
2425
# 'linux/arm/v7' - default/debian: Unable to locate package postgresql-14-postgis-3;
26+
# 'linux/arm/v6' - default/debian: Unable to locate package postgresql-14-postgis-3;
27+
# 'linux/s390x' alpine: failed test.
28+
# 'linux/mips64le' alpine failed test.
2529
#
2630
postgres: [14]
2731
postgis: ['3.2']
@@ -38,32 +42,6 @@ jobs:
3842
variant: 'default'
3943
platforms: 'linux/ppc64le'
4044

41-
42-
# - postgres: 14
43-
# postgis: '3.2'
44-
# variant: 'alpine'
45-
# platforms: 'linux/arm/v7'
46-
# - postgres: 14
47-
# postgis: '3.2'
48-
# variant: 'alpine'
49-
# platforms: 'linux/arm/v5'
50-
# - postgres: 14
51-
# postgis: '3.2'
52-
# variant: 'alpine'
53-
# platforms: 'linux/386'
54-
# - postgres: 14
55-
# postgis: '3.2'
56-
# variant: 'alpine'
57-
# platforms: 'linux/mips64le'
58-
# - postgres: 14
59-
# postgis: '3.2'
60-
# variant: 'alpine'
61-
# platforms: 'linux/ppc64le'
62-
# - postgres: 14
63-
# postgis: '3.2'
64-
# variant: 'alpine'
65-
# platforms: 'linux/s390x'
66-
6745
name: ${{ matrix.platforms }} ${{ matrix.postgres }}-${{ matrix.postgis }} ${{ matrix.variant }}
6846
runs-on: ubuntu-latest
6947

@@ -82,9 +60,11 @@ jobs:
8260
- name: Set up Docker Buildx
8361
uses: docker/setup-buildx-action@v2
8462

85-
- run: docker buildx inspect --bootstrap
63+
- name: "docker buildx inspect --bootstrap"
64+
run: docker buildx inspect --bootstrap
8665

87-
- run: docker buildx ls
66+
- name: "docker buildx ls"
67+
run: docker buildx ls
8868

8969
- if: ${{ env.VARIANT == 'alpine' }}
9070
run: docker pull --platform=${{ matrix.platforms }} postgres:${{ matrix.postgres }}-alpine3.16 && docker inspect postgres:${{ matrix.postgres }}-alpine3.16
@@ -100,7 +80,8 @@ jobs:
10080
POSTGRES_TEST_TRIES: 42
10181
POSTGRES_TEST_SLEEP: 2
10282

103-
- run: docker images
83+
- name: "docker images"
84+
run: docker images
10485

10586
- if: ${{ env.VARIANT == 'default' }}
10687
run: docker inspect postgis/postgis:${{ env.VERSION }}

0 commit comments

Comments
 (0)