Skip to content

Commit 5a176d1

Browse files
committed
Upd: Simplify GitHub actions.
1 parent af7438a commit 5a176d1

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/master.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,10 @@ jobs:
107107
context: .
108108
push: true
109109
tags: boky/postfix:latest-ubuntu
110-
platforms: "linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x"
110+
# linux/arm/v7 build fails with
111+
# CMake Error at /usr/share/cmake-3.16/Modules/CMakeCompilerIdDetection.cmake:26 (list):
112+
# list sub-command REMOVE_ITEM requires two or more arguments.
113+
platforms: "linux/amd64,linux/arm64,linux/ppc64le,linux/s390x"
111114
cache-from: type=local,src=/tmp/.buildx-cache/ubuntu
112115
cache-to: type=local,dest=/tmp/.buildx-cache-new/ubuntu
113116
build-args: |

.github/workflows/tags.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,10 @@ jobs:
107107
context: .
108108
push: true
109109
tags: boky/postfix:${{ env.RELEASE_VERSION }}-ubuntu
110-
platforms: "linux/amd64,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x"
110+
# linux/arm/v7 build fails with
111+
# CMake Error at /usr/share/cmake-3.16/Modules/CMakeCompilerIdDetection.cmake:26 (list):
112+
# list sub-command REMOVE_ITEM requires two or more arguments.
113+
platforms: "linux/amd64,linux/arm64,linux/ppc64le,linux/s390x"
111114
cache-from: type=local,src=/tmp/.buildx-cache/ubuntu
112115
cache-to: type=local,dest=/tmp/.buildx-cache-new/ubuntu
113116
build-args: |

0 commit comments

Comments
 (0)