diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 65b753fc..fed69926 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ on: jobs: build-visual-studio: - runs-on: windows + runs-on: windows-latest steps: - name: Checkout @@ -16,25 +16,4 @@ jobs: with: submodules: recursive - - name: Installing vcpkg - 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 - run: | - cd ${{ github.workspace }} - mkdir build - cd build - cmake .. -DCMAKE_TOOLCHAIN_FILE=${{ github.workspace }} - /../vcpkg/scripts/buildsystems/vcpkg.cmake - - - name: Build and run - run: | - cmake -D BUILD_TESTS=ON ./ - cd build - MSBuild.exe etl.sln