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

Enable e2e tests on Azure Linux (except LTS and Raft Scenario) #6715

Merged
merged 7 commits into from
Jan 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,10 @@ jobs:
# Dependencies
tdnf -y install openssl-devel libuv-devel curl-devel
# Test dependencies
tdnf -y install libarrow-devel parquet-libs-devel lldb
tdnf -y install libarrow-devel parquet-libs-devel lldb npm jq expect
maxtropets marked this conversation as resolved.
Show resolved Hide resolved
# Install CDDL via rubygems
tdnf -y install rubygems
gem install cddl
shell: bash

- uses: actions/checkout@v4
Expand All @@ -142,4 +145,6 @@ jobs:
export ASAN_SYMBOLIZER_PATH=$(realpath /usr/bin/llvm-symbolizer-15)
# Unit tests
./tests.sh --output-on-failure -L unit -j$(nproc --all)
# All other acceptably fast tests, which are now supported on Mariner.
./tests.sh --timeout 360 --output-on-failure -LE "benchmark|protocolstest|suite|unit|lts_compatibility|raft_scenario"
shell: bash
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1306,6 +1306,11 @@ if(BUILD_TESTS)
APPEND
PROPERTY ENVIRONMENT "LTS_COMPAT_GOV_CLIENT=1"
)
set_property(
TEST lts_compatibility
APPEND
PROPERTY LABELS lts_compatibility
)
endif()

if(LONG_TESTS)
Expand Down
Loading