test: make allocation limit guard noncopyable #20
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: ODR checks | |
| on: | |
| push | |
| jobs: | |
| odr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential | |
| - name: Build secure_zero ODR sample | |
| run: | | |
| g++ -std=c++11 -Wall -Wextra -pedantic -DHMAC_CPP_STATIC -Iinclude \ | |
| tests/odr/main.cpp \ | |
| tests/odr/tu_memset.cpp \ | |
| tests/odr/tu_explicit.cpp \ | |
| tests/odr/platform_stubs.cpp \ | |
| -o secure_zero_odr | |
| - name: Run secure_zero ODR sample | |
| run: ./secure_zero_odr |