Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix LP tests filters check and add to smoke tests in CI #11649

Merged
merged 39 commits into from
Jan 23, 2024
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
8669b49
fix hasFilters, fix cancelling log emission in case of errors, add so…
Tofel Dec 21, 2023
5cd31c7
fix replay test
Tofel Dec 21, 2023
2bd609c
fix lints
Tofel Dec 21, 2023
3c7ec93
shorten chaos log poller test
Tofel Dec 21, 2023
4f029dc
remove debug logs
Tofel Dec 21, 2023
74248fe
disable backup poller. DO NOT MERGE THIS
Tofel Dec 22, 2023
bc8afe6
make it configurable which container is paused: cl node or postgres
Tofel Dec 22, 2023
2344b9a
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 8, 2024
b7ed75c
try Domino's way of stopping log poller
Tofel Jan 8, 2024
e509bbe
fix smoke test job name
Tofel Jan 8, 2024
9f09b95
remove unnecessary check
Tofel Jan 8, 2024
428505f
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 9, 2024
eefb8ba
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 10, 2024
bcb5b39
Merge branch 'lp_tests_final_fix_and_ci' of github.com:smartcontractk…
Tofel Jan 10, 2024
1d6355e
try executing postgress pausing lp test, more debug info about missin…
Tofel Jan 10, 2024
095b18b
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 10, 2024
1c0469f
fix lints
Tofel Jan 10, 2024
3986381
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 10, 2024
84c2268
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 11, 2024
c9a4f11
revert disabling of backpolling, simplify some code, less logs
Tofel Jan 11, 2024
5017d47
make optional parameters not required in lp on demand test
Tofel Jan 11, 2024
c6561fe
run lp smoke tests in a separate job
Tofel Jan 12, 2024
c39a46a
prepare log poller json test list
Tofel Jan 12, 2024
28201c6
add missing comma, revert some comments
Tofel Jan 15, 2024
470be1d
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 15, 2024
a79a60d
fix filename for lp matrix job
Tofel Jan 15, 2024
fd53328
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 19, 2024
d8e50c4
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 22, 2024
bbcd6b6
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 22, 2024
cf37f31
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 22, 2024
623033a
move log poller scenarios to test file, remove unused load test
Tofel Jan 22, 2024
2b41ffc
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 23, 2024
af7db75
reduce code duplication in lp tests
Tofel Jan 23, 2024
7de3fd7
fix lp tests, fix smoke workflow
Tofel Jan 23, 2024
34243da
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 23, 2024
62ee2d1
Merge branch 'develop' into lp_tests_final_fix_and_ci
Tofel Jan 23, 2024
451d457
remove commented out sections, remove cosmossdk.io/errors
Tofel Jan 23, 2024
f52c011
Merge branch 'lp_tests_final_fix_and_ci' of github.com:smartcontractk…
Tofel Jan 23, 2024
157e683
removed trailing spaces, added comments to functions
Tofel Jan 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add missing comma, revert some comments
  • Loading branch information
Tofel committed Jan 15, 2024
commit 28201c621f7c55ffa2d7d3fe47ebae6b535f2b4e
6 changes: 3 additions & 3 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
cd ./integration-tests
MATRIX_JSON_AUTOMATION=$(./scripts/buildTestMatrixList.sh ./smoke/automation_test.go automation ubuntu-latest 1)
MATRIX_JSON_KEEPER=$(./scripts/buildTestMatrixList.sh ./smoke/keeper_test.go keeper ubuntu-latest 1)
COMBINED_ARRAY=$(jq -c -n "$MATRIX_JSON_AUTOMATION + $MATRIX_JSON_KEEPER)
COMBINED_ARRAY=$(jq -c -n "$MATRIX_JSON_AUTOMATION + $MATRIX_JSON_KEEPER")

MATRIX_JSON_LP=$(./scripts/buildTestMatrixList.sh ./smoke/log_poller_test.go log-poller ubuntu-latest 1)
echo "LP_JOB_MATRIX_JSON=${MATRIX_JSON_LP}" >> $GITHUB_ENV
Expand All @@ -224,10 +224,10 @@ jobs:
echo "we are not in a merge_group event, if this is a PR to develop run only automation tests, otherwise run everything because we could be running against a release branch"
target_branch=$(cat $GITHUB_EVENT_PATH | jq -r .pull_request.base.ref)
if [[ "$target_branch" == "develop" ]]; then
echo "only run log poller and automation tests"
echo "only run automation tests"
echo "AUTOMATION_JOB_MATRIX_JSON=${MATRIX_JSON_AUTOMATION}" >> $GITHUB_ENV
else
echo "run both log poller, automation and keepers tests"
echo "run both automation and keepers tests"
echo "AUTOMATION_JOB_MATRIX_JSON=${COMBINED_ARRAY}" >> $GITHUB_ENV
fi
fi
Expand Down