Bump vcpkg from 14e7bb4
to a42af01
#40
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: Build-Linux-Qt6 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: false | |
- name: Install system dependencies | |
run: | | |
sudo apt-get update && \ | |
sudo apt-get install \ | |
ninja-build \ | |
libgmock-dev \ | |
qt6-base-dev \ | |
libcurl4-openssl-dev \ | |
libmicrohttpd-dev \ | |
libjsoncpp-dev | |
- name: Build | |
uses: ashutoshvarma/action-cmake-build@master | |
with: | |
build-dir: ${{ runner.workspace }}/build | |
build-type: Release | |
configure-options: -DGitHubAPI_Tests=ON -DGitHubAPI_UseQt6=ON | |
run-test: true |