Skip to content

Updated macos ci to use macos 11. #232

Updated macos ci to use macos 11.

Updated macos ci to use macos 11. #232

Workflow file for this run

name: Linux build & tests
on: [push, pull_request, workflow_dispatch]
env:
BUILD_TYPE: Release # Change build type here.
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-20.04 ]
steps:
- uses: actions/checkout@v2
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: 5.15.2 # Update Qt version here.
aqtversion: '>=0.9.7'
- name: Install Boost
shell: bash
run: |
sudo apt-get install -y libboost-all-dev
- name: Build
shell: bash
run: |
cd build
cmake ..
cmake --build . --config $BUILD_TYPE --target Degate
- name: Tests
shell: bash
run: |
cd build
cmake --build . --config $BUILD_TYPE --target DegateTests
cd tests/out/bin
./DegateTests