mirror of
https://github.com/ETLCPP/etl.git
synced 2026-07-01 06:48:44 +08:00
29 lines
546 B
YAML
29 lines
546 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: [ feature/github-actions-for-windows-compilers ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
|
|
build-visual-studio:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Installing vcpkg
|
|
run: |
|
|
cd ..
|
|
git clone https://github.com/Microsoft/vcpkg.git
|
|
cd vcpkg
|
|
git checkout
|
|
.\bootstrap-vcpkg.bat
|
|
.\vcpkg.exe install cppzmq:x64-windows
|
|
|
|
- name: Build and run
|
|
run: |
|
|
MSBuild.exe etl.sln
|