Add FLAC__stream_decoder_get_link_lengths #331
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: Building with specific options | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| include: | |
| - name: 32-bit-words | |
| cppflags: '' | |
| configure-opts: --disable-64-bit-words | |
| - name: integer-only-library | |
| cppflags: '-DFLAC__INTEGER_ONLY_LIBRARY' | |
| configure-opts: '' | |
| - name: no-asm | |
| cppflags: '' | |
| configure-opts: --disable-asm-optimizations | |
| - name: no-ogg | |
| cppflags: '' | |
| configure-opts: --disable-ogg | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libtool-bin libogg-dev | |
| - name: Build and run tests | |
| env: | |
| CPPFLAGS: ${{ matrix.cppflags }} | |
| run: | | |
| ./autogen.sh | |
| ./configure --disable-thorough-tests ${{ matrix.configure-opts }} | |
| make | |
| make check | |
| - name: Upload logs on failure | |
| uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: flac-${{ github.sha }}-${{ github.run_id }}-logs | |
| path: | | |
| ./**/*.log | |
| ./**/out*.meta |