src/bamrec.hpp: adding a file for the BAM records analogous to fqrec.… #34
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: System tests on macOS | |
| on: | |
| push: | |
| branches: | |
| - falco2 | |
| jobs: | |
| macos-tests: | |
| runs-on: macos-26 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: | | |
| brew update | |
| brew install zlib libdeflate htslib | |
| - name: Configure for system tests | |
| run: | | |
| cmake -B build \ | |
| -DCMAKE_CXX_COMPILER=g++-15 \ | |
| -DCMAKE_CXX_FLAGS="-I$(brew --prefix)/include" \ | |
| -DCMAKE_EXE_LINKER_FLAGS="-L$(brew --prefix)/lib" \ | |
| -DCMAKE_BUILD_TYPE=Build | |
| - name: Build | |
| run: | | |
| cmake --build build -j3 | |
| - name: Run the tests | |
| run: | | |
| ctest --test-dir build --output-on-failure |