File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 94
94
if-no-files-found : ignore
95
95
if : success() || failure()
96
96
97
- build_azure_linux :
97
+ build_and_test_azure_linux :
98
98
name : " Azure Linux CI"
99
99
needs : checks
100
100
runs-on : [self-hosted, 1ES.Pool=gha-virtual-ccf-sub]
@@ -115,7 +115,7 @@ jobs:
115
115
# Dependencies
116
116
tdnf -y install openssl-devel libuv-devel
117
117
# Test dependencies
118
- tdnf -y install libarrow-devel parquet-libs-devel
118
+ tdnf -y install libarrow-devel parquet-libs-devel lldb npm
119
119
shell : bash
120
120
121
121
- uses : actions/checkout@v4
@@ -131,3 +131,14 @@ jobs:
131
131
CC=`which clang` CXX=`which clang++` cmake -GNinja -DCOMPILE_TARGET=virtual -DCMAKE_BUILD_TYPE=Debug -DLVI_MITIGATIONS=OFF -DUSE_LIBCXX=OFF ..
132
132
ninja
133
133
shell : bash
134
+
135
+ - name : " Test virtual"
136
+ run : |
137
+ set -ex
138
+ cd build
139
+ rm -rf /github/home/.cache
140
+ mkdir -p /github/home/.cache
141
+ export ASAN_SYMBOLIZER_PATH=$(realpath /usr/bin/llvm-symbolizer-15)
142
+ # Unit tests
143
+ ./tests.sh --output-on-failure -L unit -j$(nproc --all)
144
+ shell : bash
You can’t perform that action at this time.
0 commit comments