build(deps): bump actions/checkout from 5 to 6 #115
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
| --- | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths-ignore: | |
| - 'build/**' | |
| - 'contrib/**' | |
| - 'doc/**' | |
| branches: | |
| - master | |
| pull_request: | |
| paths-ignore: | |
| - 'build/**' | |
| - 'contrib/**' | |
| - 'doc/**' | |
| branches: | |
| - master | |
| jobs: | |
| build-linux: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| iconv: [enabled, disabled] | |
| steps: | |
| - id: checkout | |
| uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt install -y --no-install-recommends \ | |
| meson \ | |
| ccache \ | |
| libmpdclient-dev \ | |
| check | |
| - id: cache-ccache | |
| uses: hendrikmuhs/ccache-action@v1 | |
| with: | |
| key: linux-iconv=${{ matrix.iconv }} | |
| - name: Configure | |
| run: | | |
| meson setup \ | |
| -Ddocumentation=disabled \ | |
| -Dtest=true \ | |
| -Diconv=${{ matrix.iconv }} \ | |
| --wrap-mode nofallback \ | |
| ${{ matrix.meson_options }} \ | |
| output | |
| - name: Build | |
| run: meson compile -C output --verbose | |
| - name: Unit Tests | |
| run: meson test -C output --print-errorlogs | |
| build-macos: | |
| runs-on: macos-latest | |
| steps: | |
| - id: checkout | |
| uses: actions/checkout@v6 | |
| - id: cache-ccache | |
| uses: hendrikmuhs/ccache-action@v1 | |
| with: | |
| key: macos | |
| - uses: actions/setup-python@v6 | |
| - name: Install dependencies | |
| run: | | |
| brew install \ | |
| meson ninja \ | |
| libmpdclient \ | |
| check | |
| - name: Configure | |
| run: | | |
| meson setup \ | |
| -Ddocumentation=disabled \ | |
| -Dtest=true \ | |
| --wrap-mode nofallback \ | |
| ${{ matrix.meson_options }} \ | |
| output | |
| - name: Build | |
| run: meson compile -C output --verbose | |
| - name: Unit Tests | |
| run: meson test -C output --print-errorlogs | |
| build-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - id: checkout | |
| uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: | | |
| pip install meson ninja | |
| - name: Configure | |
| run: meson setup -Ddocumentation=disabled --wrap-mode forcefallback ${{ matrix.meson_options }} output | |
| - name: Build | |
| run: meson compile -C output --verbose | |
| build-windows-msvc: | |
| runs-on: windows-latest | |
| steps: | |
| - id: checkout | |
| uses: actions/checkout@v6 | |
| - name: Add VisualStudio command line tools into path | |
| uses: ilammy/msvc-dev-cmd@v1 | |
| - name: Install dependencies | |
| run: | | |
| pip install meson ninja | |
| - name: Configure | |
| run: meson setup -Ddocumentation=disabled --wrap-mode forcefallback ${{ matrix.meson_options }} output | |
| - name: Build | |
| run: meson compile -C output --verbose | |
| build-msys2: | |
| strategy: | |
| matrix: | |
| platform: ['MINGW64', 'UCRT64'] | |
| defaults: | |
| run: | |
| shell: msys2 {0} | |
| runs-on: windows-latest | |
| steps: | |
| - id: checkout | |
| uses: actions/checkout@v6 | |
| - uses: msys2/setup-msys2@v2 | |
| with: | |
| msystem: ${{matrix.platform}} | |
| install: >- | |
| git | |
| pacboy: >- | |
| cc:p | |
| ccache:p | |
| check:p | |
| jack2:p | |
| meson:p | |
| ninja:p | |
| - id: cache-ccache | |
| uses: hendrikmuhs/ccache-action@v1.2 | |
| with: | |
| key: ${{ matrix.platform }} | |
| - name: Configure | |
| run: | | |
| meson setup \ | |
| -Ddocumentation=disabled \ | |
| -Dtest=true \ | |
| --wrap-mode forcefallback \ | |
| ${{ matrix.meson_options }} \ | |
| "${{github.workspace}}/build" | |
| - name: Build | |
| run: meson compile -C "${{github.workspace}}/build" --verbose | |
| - name: Unit Tests | |
| run: meson test -C "${{github.workspace}}/build" --print-errorlogs |