wip #20
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 Qwt | |
on: [push, pull_request] | |
jobs: | |
ResInsight-x64: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
qtver: ['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.qtver }} | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v2 | |
with: | |
version: ${{ runner.qtver }} | |
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 |