fix trampoline generation, now working for small real queries on arm64 #13
This file contains hidden or 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: C/C++ CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install PostgreSQL packages - 1 | |
| run: sudo apt install postgresql-common | |
| - name: install PostgreSQL packages - 2 | |
| run: sudo apt install postgresql-server-dev-16 clang-19 | |
| - name: install llvm, to build the stencils | |
| run: sudo apt install llvm clang | |
| - name: make | |
| run: make |