DTO user API #26
Workflow file for this run
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: CI | |
| permissions: read-all | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install accel-config | |
| run: sudo apt install -y accel-config libaccel-config-dev | |
| - name: Install uuid | |
| run: sudo apt install -y uuid-dev | |
| - name: Install libnuma | |
| run: sudo apt install -y libnuma-dev | |
| - name: Build | |
| run: make | |
| - name: Install DTO | |
| run: sudo make install | |
| - name: Build dto-test | |
| run: export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib64/; make dto-test | |
| - name: Run dto-test | |
| run: LD_LIBRARY_PATH=/usr/lib64 ./dto-test |