Allow database backend to optimize group-by-XZ operation #62
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
# build on c/cpp changes or workflow changes | |
on: | |
push: | |
paths: | |
- '**.[ch]' | |
- '**.cpp' | |
- '**/CMakeLists.txt' | |
- 'util/ci/**' | |
- '.github/workflows/**.yml' | |
pull_request: | |
paths: | |
- '**.[ch]' | |
- '**.cpp' | |
- '**/CMakeLists.txt' | |
- 'util/ci/**' | |
- '.github/workflows/**.yml' | |
jobs: | |
gcc: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install deps | |
run: | | |
source util/ci/script.sh | |
install_linux_deps | |
- name: Build | |
run: | | |
source util/ci/script.sh | |
run_build | |
env: | |
CC: gcc | |
CXX: g++ | |
- name: Test | |
run: | | |
./util/ci/test.sh | |
- name: Test Install | |
run: | | |
make DESTDIR=/tmp/install install | |
clang: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install deps | |
run: | | |
source util/ci/script.sh | |
install_linux_deps | |
- name: Build | |
run: | | |
source util/ci/script.sh | |
run_build | |
env: | |
CC: clang | |
CXX: clang++ | |
- name: Test | |
run: | | |
./util/ci/test.sh |