|
1 | | -name: Tests (Asan) |
2 | | - |
3 | | -on: |
4 | | - push: |
5 | | - branches: [ main ] |
6 | | - pull_request: |
7 | | - branches: [ main ] |
8 | | - |
9 | | -jobs: |
10 | | - build-and-test: |
11 | | - runs-on: ubuntu-latest |
12 | | - |
13 | | - steps: |
14 | | - - uses: actions/checkout@v4 |
15 | | - |
16 | | - - name: Create Build Directory |
17 | | - run: mkdir build |
18 | | - |
19 | | - - name: Configure CMake |
20 | | - working-directory: ./build |
21 | | - run: cmake -DDISABLE_AVX512=ON -DENABLE_ADDRESS_SANITIZER=ON -DPIXIE_BENCHMARKS=OFF .. |
22 | | - |
23 | | - - name: Build Project |
24 | | - working-directory: ./build |
25 | | - run: make -j |
26 | | - |
27 | | - - name: Run Unittests |
28 | | - working-directory: ./build |
29 | | - run: ./unittests |
30 | | - |
31 | | - - name: Run LOUDS Tree Tests |
32 | | - working-directory: ./build |
33 | | - run: ./louds_tree_tests |
34 | | - |
35 | | - - name: Run Benchmark Tests |
36 | | - working-directory: ./build |
37 | | - run: ./benchmark_tests |
38 | | - |
39 | | - # TODO: fix RmM tests under Asan |
40 | | - # - name: Run RmM Tree Tests |
41 | | - # working-directory: ./build |
42 | | - # run: ./test_rmm |
43 | | - |
| 1 | +name: Tests (Asan) |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + branches: [ main ] |
| 6 | + pull_request: |
| 7 | + branches: [ main ] |
| 8 | + |
| 9 | +jobs: |
| 10 | + build-and-test: |
| 11 | + runs-on: ubuntu-latest |
| 12 | + |
| 13 | + steps: |
| 14 | + - uses: actions/checkout@v4 |
| 15 | + |
| 16 | + - name: Create Build Directory |
| 17 | + run: mkdir build |
| 18 | + |
| 19 | + - name: Configure CMake |
| 20 | + working-directory: ./build |
| 21 | + run: cmake -DDISABLE_AVX512=ON -DENABLE_ADDRESS_SANITIZER=ON -DPIXIE_BENCHMARKS=OFF .. |
| 22 | + |
| 23 | + - name: Build Project |
| 24 | + working-directory: ./build |
| 25 | + run: make -j |
| 26 | + |
| 27 | + - name: Run Unittests |
| 28 | + working-directory: ./build |
| 29 | + run: ./unittests |
| 30 | + |
| 31 | + - name: Run LOUDS Tree Tests |
| 32 | + working-directory: ./build |
| 33 | + run: ./louds_tree_tests |
| 34 | + |
| 35 | + - name: Run Benchmark Tests |
| 36 | + working-directory: ./build |
| 37 | + run: ./benchmark_tests |
| 38 | + |
| 39 | + - name: Run RmM Tree Tests |
| 40 | + working-directory: ./build |
| 41 | + run: ./test_rmm |
| 42 | + |
44 | 43 | build-and-test-with-SDE: |
45 | 44 | runs-on: ubuntu-latest |
46 | 45 | timeout-minutes: 60 |
|
92 | 91 | exit 0 |
93 | 92 | fi |
94 | 93 | exit $rc |
95 | | -
|
| 94 | +
|
0 commit comments