From 4eeccb68b93b24152fe15649e400e57d656394e4 Mon Sep 17 00:00:00 2001 From: Celalettin Calis Date: Mon, 27 Jan 2025 12:04:45 +0300 Subject: [PATCH 1/4] debug multiarch build this is to debug build will be closed Signed-off-by: Celalettin Calis --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index c97b9773453..e22a4a24bb6 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -81,7 +81,7 @@ RUN cmake -DFLB_RELEASE=On \ -DFLB_CHUNK_TRACE="$FLB_CHUNK_TRACE" \ .. -RUN make -j "$(getconf _NPROCESSORS_ONLN)" +RUN make -j "$(getconf _NPROCESSORS_ONLN)" VERBOSE=1 RUN install bin/fluent-bit /fluent-bit/bin/ # Configuration files From a82e708dc5d29c25e1df3fb2d1c6bfe18c8e865b Mon Sep 17 00:00:00 2001 From: Celalettin Calis Date: Mon, 27 Jan 2025 12:08:36 +0300 Subject: [PATCH 2/4] build only for amd and arm Signed-off-by: Celalettin Calis --- .github/workflows/build-branch-containers.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-branch-containers.yaml b/.github/workflows/build-branch-containers.yaml index ea5d3c6cd3d..5c7858f2825 100644 --- a/.github/workflows/build-branch-containers.yaml +++ b/.github/workflows/build-branch-containers.yaml @@ -16,5 +16,6 @@ jobs: username: ${{ github.actor }} image: ${{ github.repository }}/test/${{ github.event.inputs.version }} unstable: ${{ github.event.inputs.version }} + platforms: 'linux/amd64, linux/arm64' secrets: token: ${{ secrets.GITHUB_TOKEN }} From 0856d5c6a638d36dc0e3d35b87a118ae0cd716d7 Mon Sep 17 00:00:00 2001 From: Celalettin Calis Date: Mon, 27 Jan 2025 12:09:55 +0300 Subject: [PATCH 3/4] build only for arm Signed-off-by: Celalettin Calis --- .github/workflows/build-branch-containers.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-branch-containers.yaml b/.github/workflows/build-branch-containers.yaml index 5c7858f2825..c4627887678 100644 --- a/.github/workflows/build-branch-containers.yaml +++ b/.github/workflows/build-branch-containers.yaml @@ -16,6 +16,6 @@ jobs: username: ${{ github.actor }} image: ${{ github.repository }}/test/${{ github.event.inputs.version }} unstable: ${{ github.event.inputs.version }} - platforms: 'linux/amd64, linux/arm64' + platforms: 'linux/arm64' secrets: token: ${{ secrets.GITHUB_TOKEN }} From dcf025cedbb6bedd31a32090a186f88de00afd46 Mon Sep 17 00:00:00 2001 From: Celalettin Calis Date: Mon, 27 Jan 2025 12:38:21 +0300 Subject: [PATCH 4/4] add verbosity to make Signed-off-by: Celalettin Calis --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index e22a4a24bb6..6837181870b 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -81,7 +81,7 @@ RUN cmake -DFLB_RELEASE=On \ -DFLB_CHUNK_TRACE="$FLB_CHUNK_TRACE" \ .. -RUN make -j "$(getconf _NPROCESSORS_ONLN)" VERBOSE=1 +RUN CFLAGS="-v" make -j "$(getconf _NPROCESSORS_ONLN)" RUN install bin/fluent-bit /fluent-bit/bin/ # Configuration files