File tree Expand file tree Collapse file tree 6 files changed +7
-5
lines changed Expand file tree Collapse file tree 6 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ jobs:
193
193
194
194
# Runs E2E tests using the packages available in the tmp-pr-#PR prerelease
195
195
run_e2e_tests_prerelease :
196
- needs : [ setup_environment,upload_official_packages_to_prerelease ]
196
+ needs : [ setup_environment,sign_suse_packages ]
197
197
name : Run E2E tests by installing NRIA from Production and installing Fluent Bit from the PR pre-release
198
198
uses : ./.github/workflows/run_e2e_tests.yml
199
199
with :
Original file line number Diff line number Diff line change 120
120
cmd : " {{ cmake_path }}/bin/cpack -G RPM"
121
121
chdir : " {{ fluent_bit_path }}/build"
122
122
creates : " {{ fluent_bit_path }}/build/fluent-bit-{{ fluent_bit_version }}-1.x86_64.rpm"
123
+ async : 420 # timeout 7m
124
+ poll : 30 # poll every 30s
123
125
124
126
- name : Rename binary for the specific OS type, version and arch
125
127
# Not actually renaming but copying, so that the previous step nor this one won't be re-executed thanks to "creates"
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ osDistro: sles
2
2
osVersion : 12.5
3
3
packages :
4
4
- arch : x86_64
5
- ami : ami-06dec9fcc0c723281
5
+ ami : ami-09e4a5ed1b412cf53
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ osDistro: sles
2
2
osVersion : 15.3
3
3
packages :
4
4
- arch : x86_64
5
- ami : ami-048206b517bb4a5c2
5
+ ami : ami-0c0ca60d1d7619525
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ osDistro: sles
2
2
osVersion : 15.5
3
3
packages :
4
4
- arch : x86_64
5
- ami : ami-056fd006f96380745
5
+ ami : ami-0b7de87a082366f50
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ def list_distro_files():
186
186
return [
187
187
filename
188
188
for filename in os .listdir ("." )
189
- if (filename .startswith ("ubuntu " ))
189
+ if (filename .startswith ("sles_15.3" ) or filename . startswith ( "sles_15.4" ) or filename . startswith ( "sles_12.5" ) or filename . startswith ( "sles_15.5 " ))
190
190
and filename != "common.yml"
191
191
]
192
192
except Exception as e :
You can’t perform that action at this time.
0 commit comments