diff --git a/.github/workflows/build-win.yml b/.github/workflows/build-win.yml index 3d0adf61d..2202b8817 100644 --- a/.github/workflows/build-win.yml +++ b/.github/workflows/build-win.yml @@ -23,40 +23,40 @@ env: GCC_VERSION: "10.1.0" -jobs: -samples-build-VS-2019: -runs-on: windows-2019 - strategy: matrix: configuration: [Release] platform: [x64] -steps: - - name: "Checkout code" - uses: actions/checkout@v3 - with: - submodules: recursive - - - name: Installing vcpkg (windows) - run: | - cd .. - git clone https://github.com/Microsoft/vcpkg.git - cd vcpkg - git checkout --force 2020.01 - .\bootstrap-vcpkg.bat - .\vcpkg.exe install cppzmq:x64-windows - - - name: Running cmake (windows) - run: | - cd ${{ github.workspace }} - ls - mkdir build - cd build - cmake .. -DCMAKE_TOOLCHAIN_FILE=${{ github.workspace }}/../vcpkg/scripts/buildsystems/vcpkg.cmake - - - name: Build Solution (windows) - run: | - cd build - MSBuild.exe CMakeHelloWorld.sln - +jobs: + samples-build-VS-2019: + runs-on: windows-2019 + + steps: + - name: "Checkout code" + uses: actions/checkout@v3 + with: + submodules: recursive + + - name: Installing vcpkg (windows) + run: | + cd .. + git clone https://github.com/Microsoft/vcpkg.git + cd vcpkg + git checkout --force 2020.01 + .\bootstrap-vcpkg.bat + .\vcpkg.exe install cppzmq:x64-windows + + - name: Running cmake (windows) + run: | + cd ${{ github.workspace }} + ls + mkdir build + cd build + cmake .. -DCMAKE_TOOLCHAIN_FILE=${{ github.workspace }}/../vcpkg/scripts/buildsystems/vcpkg.cmake + + - name: Build Solution (windows) + run: | + cd build + MSBuild.exe CMakeHelloWorld.sln +