Skip to content

Commit

Permalink
fb version upgrade to 3.2.2 for suse packages (#192)
Browse files Browse the repository at this point in the history
Upgrade fb version to 3.2.2 for suse packages
  • Loading branch information
sanathramesh authored Jan 21, 2025
1 parent 30ddb0d commit 240a12f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:

# Runs E2E tests using the packages available in the tmp-pr-#PR prerelease
run_e2e_tests_prerelease:
needs: [ setup_environment,upload_official_packages_to_prerelease ]
needs: [ setup_environment,sign_suse_packages ]
name: Run E2E tests by installing NRIA from Production and installing Fluent Bit from the PR pre-release
uses: ./.github/workflows/run_e2e_tests.yml
with:
Expand Down
2 changes: 2 additions & 0 deletions ansible/build-fb-suse/playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@
cmd: "{{ cmake_path }}/bin/cpack -G RPM"
chdir: "{{ fluent_bit_path }}/build"
creates: "{{ fluent_bit_path }}/build/fluent-bit-{{ fluent_bit_version }}-1.x86_64.rpm"
async: 420 # timeout 7m
poll: 30 # poll every 30s

- name: Rename binary for the specific OS type, version and arch
# Not actually renaming but copying, so that the previous step nor this one won't be re-executed thanks to "creates"
Expand Down
2 changes: 1 addition & 1 deletion versions/sles_12.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ osDistro: sles
osVersion: 12.5
packages:
- arch: x86_64
ami: ami-06dec9fcc0c723281
ami: ami-09e4a5ed1b412cf53
2 changes: 1 addition & 1 deletion versions/sles_15.3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ osDistro: sles
osVersion: 15.3
packages:
- arch: x86_64
ami: ami-048206b517bb4a5c2
ami: ami-0c0ca60d1d7619525
2 changes: 1 addition & 1 deletion versions/sles_15.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ osDistro: sles
osVersion: 15.5
packages:
- arch: x86_64
ami: ami-056fd006f96380745
ami: ami-0b7de87a082366f50
2 changes: 1 addition & 1 deletion versions/strategyMatrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def list_distro_files():
return [
filename
for filename in os.listdir(".")
if (filename.startswith("ubuntu"))
if (filename.startswith("sles_15.3") or filename.startswith("sles_15.4") or filename.startswith("sles_12.5") or filename.startswith("sles_15.5"))
and filename != "common.yml"
]
except Exception as e:
Expand Down

0 comments on commit 240a12f

Please sign in to comment.