Skip to content

Bump vcpkg from 14e7bb4 to a42af01 #40

Bump vcpkg from 14e7bb4 to a42af01

Bump vcpkg from 14e7bb4 to a42af01 #40

Workflow file for this run

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