From 8b7e36fca0327fbd10310b36e8380f0e4ed44222 Mon Sep 17 00:00:00 2001 From: HEMAGUNNALA Date: Fri, 18 Oct 2024 14:51:15 +0530 Subject: [PATCH 1/4] Upgrade fluent bit version to 3.1.9 --- versions/common.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/common.yml b/versions/common.yml index 7ea346f0..aeb21ce7 100644 --- a/versions/common.yml +++ b/versions/common.yml @@ -1,4 +1,4 @@ -fbVersion: 3.1.2 +fbVersion: 3.1.9 # This file, together with each distro file are processed and merged incrementally to # build all the information required to download and test each package. Each package ends From 7fccf559f79868bdc584ad198195a4bdb32597db Mon Sep 17 00:00:00 2001 From: HEMAGUNNALA Date: Fri, 18 Oct 2024 16:07:10 +0530 Subject: [PATCH 2/4] Upgrade upload-artifact version to v3 since v2 is deprecated --- .github/workflows/prerelease.yml | 6 +++--- .github/workflows/pull_request.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 6467054d..0ac56bb7 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -57,7 +57,7 @@ jobs: sudo apt-get install -y debsigs bash ./scripts/sign.sh - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 if: ${{ contains(matrix.packages.available-flavors, env.FB_PACKAGE_NAME) }} with: name: ${{ env.FB_PACKAGE_NAME }}_${{ env.VERSION }}_rpm @@ -100,7 +100,7 @@ jobs: sudo apt-get install -y debsigs bash ./scripts/sign.sh - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 if: ${{ contains(matrix.packages.available-flavors, env.FB_PACKAGE_NAME) }} with: name: ${{ env.FB_PACKAGE_NAME }}_${{ env.VERSION }}_deb @@ -128,7 +128,7 @@ jobs: unzip fluent-bit-${{ env.VERSION }}-${{ matrix.packages.version }}.zip zip -r -j packages/fb-windows-${{ matrix.packages.arch }}.zip fluent-bit-${{ env.VERSION }}-${{ matrix.packages.version }}/bin/fluent-bit.exe fluent-bit-${{ env.VERSION }}-${{ matrix.packages.version }}/bin/fluent-bit.dll - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: fluent-bit_${{ env.VERSION }}_zip path: packages/ diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 885bcf19..dff9783b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -119,7 +119,7 @@ jobs: # for those distros using the same package, such as Windows). To avoid this, we first push all the files to a # shared filesystem and let the "prepare_prerelease" step below upload them later, sequentially. This GH action # ensures that if two jobs attempt pushing the same file, they get overwritten (last one prevails). - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: # Artifacts are pushed to *shared network folders* that have this name and that contain # the artifact inside of them. Example: fluent-bit-2.1.8-386.exe/fluent-bit-2.1.8-386.exe From ec5c43661c49e8925094911fea1f075368a1b453 Mon Sep 17 00:00:00 2001 From: HEMAGUNNALA Date: Wed, 23 Oct 2024 14:46:13 +0530 Subject: [PATCH 3/4] dd zypper debug --- ansible/build-fb-suse/playbook.yml | 40 +++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/ansible/build-fb-suse/playbook.yml b/ansible/build-fb-suse/playbook.yml index 8e40b82d..b7248780 100644 --- a/ansible/build-fb-suse/playbook.yml +++ b/ansible/build-fb-suse/playbook.yml @@ -38,6 +38,23 @@ tasks: - name: Wait for connection to be available wait_for_connection: + - name: Debug repository configuration + command: zypper repos + register: repo_output + ignore_errors: yes + + - name: Print repository configuration + debug: + var: repo_output.stdout_lines + + - name: Refresh repositories + command: zypper refresh + register: refresh_output + ignore_errors: yes + + - name: Print refresh output + debug: + var: refresh_output.stdout_lines - name: Install dependencies community.general.zypper: @@ -58,9 +75,30 @@ become: true register: install_status until: install_status is success - # Retry up to 5 minutes, because at startup the zypper command might temporarily hold a lock that prevents installing packages delay: 15 retries: 20 + # - name: Install dependencies + # community.general.zypper: + # name: + # - git + # - flex + # - wget + # - libyaml-devel + # - libopenssl-devel + # - systemd-devel + # - gcc + # - gcc-c++ + # - rpmbuild + # - "{{ cpp_with_version }}" + # state: present + # oldpackage: true + # force_resolution: true + # become: true + # register: install_status + # until: install_status is success + # # Retry up to 5 minutes, because at startup the zypper command might temporarily hold a lock that prevents installing packages + # delay: 15 + # retries: 20 - name: Download and extract Bison {{ bison_version }} unarchive: From 9243ce7100613503d7f39479f3ce6a73ef2b0720 Mon Sep 17 00:00:00 2001 From: HEMAGUNNALA Date: Thu, 24 Oct 2024 09:39:10 +0530 Subject: [PATCH 4/4] add comment --- versions/common.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/versions/common.yml b/versions/common.yml index aeb21ce7..4e9c69e8 100644 --- a/versions/common.yml +++ b/versions/common.yml @@ -1,3 +1,4 @@ +#fluent bit version fbVersion: 3.1.9 # This file, together with each distro file are processed and merged incrementally to