Skip to content

Added new step to CI to free disk before vcpkg installs. #271

Added new step to CI to free disk before vcpkg installs.

Added new step to CI to free disk before vcpkg installs. #271

Workflow file for this run

name: Mac 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: [ macos-12 ]
steps:
- uses: actions/checkout@v2
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: 6.2.4 # Update Qt version here.
aqtversion: '>=0.9.7'
modules: 'qtimageformats'
- name: Install boost
uses: MarkusJx/[email protected]
id: install-boost
with:
boost_version: 1.72.0 # Update Boost version here.
- name: Build
shell: bash
run: |
cd build
cmake ..
cmake --build . --config $BUILD_TYPE --target Degate
env:
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}
- name: Tests
shell: bash
run: |
cd build
cmake --build . --config $BUILD_TYPE --target DegateTests
cd tests/out/bin
./DegateTests