Skip to content

fix argument

fix argument #16

Workflow file for this run

name: Build Qwt
on: [push, pull_request]
jobs:
ResInsight-x64:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
qt: [5.12.12, 6.5.3]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Qt
id: cache-qt
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/Qt/
key: ${{ runner.os }}-QtCache-${{ runner.qt }}
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: "${{ runner.qt }}"
dir: "${{ github.workspace }}/Qt/"
- name: Install Linux dependencies
if: "contains( matrix.os, 'ubuntu')"
run: sudo apt-get install libxkbcommon-x11-0 libgl1-mesa-dev mesa-common-dev libglfw3-dev libglu1-mesa-dev
- name: Use MSVC (Windows)
uses: ilammy/msvc-dev-cmd@v1
- name: Configure and build
run: |
cmake -S . -B build
cmake --build build