cmake: default: Remove admin requeriment for windows #206
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: Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v2 | |
with: | |
version: '5.15.1' | |
target: 'desktop' | |
cached: ${{ steps.cache-qt.outputs.cache-hit }} | |
modules: qtcharts | |
- name: Install jinja2 | |
run: | | |
pip install --user --upgrade pip; | |
pip install --user jinja2; | |
- name: Build Linux | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt update | |
sudo apt install libxcb-* doxygen | |
export LD_LIBRARY_PATH=$Qt5_DIR/lib/ | |
./tools/runtests.sh |