test #66
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: Test | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| name: Build (${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: windows-latest | |
| triplet: x64-windows | |
| shell: powershell | |
| - os: ubuntu-latest | |
| triplet: x64-linux | |
| shell: bash | |
| - os: macos-latest | |
| triplet: x64-osx | |
| shell: bash | |
| env: | |
| VCPKG_BINARY_SOURCES: >- | |
| clear;files,${{ github.workspace }}${{ matrix.os == 'windows-latest' && '\vcpkg-cache' || '/vcpkg-cache' }},readwrite | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Restore vcpkg cache | |
| uses: ./.github/cache | |
| with: | |
| triplet: ${{ matrix.triplet }} | |
| - name: Clone vcpkg | |
| run: git clone https://github.com/microsoft/vcpkg | |
| - name: Bootstrap vcpkg | |
| run: ${{matrix.os == 'windows-latest' && 'vcpkg\bootstrap-vcpkg.bat' || './vcpkg/bootstrap-vcpkg.sh'}} | |
| - name: Install dependencies | |
| run: ${{matrix.os == 'windows-latest' && 'vcpkg\vcpkg install --triplet ${matrix.triplet} --x-install-root ${GITHUB_WORKSPACE}\vcpkg-cache' || './vcpkg/vcpkg install --triplet ${matrix.triplet} --x-install-root ${GITHUB_WORKSPACE}/vcpkg-cache'}} |