ACTIONS: Update vcpkg on Windows MSVC builds #21
Workflow file for this run
This file contains 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: linux autotools gcc | |
on: | |
[push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
id: install_dependencies | |
run: sudo apt-get update -qq && sudo apt-get -y install libboost-all-dev | |
- name: Configure | |
id: configure | |
run: ( ./autogen.sh && ./configure ) || ( cat config.log; exit 1 ) | |
- name: Compile | |
id: compile | |
run: make -j4 | |
- name: Build and run unit tests | |
id: run_unit_tests | |
run: make -j4 check |