diff --git a/.github/workflows/cmake-windows.yml b/.github/workflows/cmake-windows.yml index 5129512..57bb8aa 100644 --- a/.github/workflows/cmake-windows.yml +++ b/.github/workflows/cmake-windows.yml @@ -16,9 +16,14 @@ jobs: - name: Install Go uses: actions/setup-go@v5.0.1 with: - go-version: '>=1.17.0' + go-version: '1.22.5' - run: go version - uses: actions/checkout@v3 + - name: Build ffmpeg + run: | + cd third_party + choco install wget --no-progress + bash install_ffmpeg.sh - name: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - name: Build