QtPBFImagePlugin/.github/workflows/osx.yml

21 lines
397 B
YAML
Raw Normal View History

2021-10-27 17:42:17 +02:00
name: OS X
on:
push:
branches:
- master
jobs:
build:
name: QtPBFImagePlugin
2023-05-05 23:26:03 +02:00
runs-on: macos-latest
2021-10-27 17:42:17 +02:00
steps:
- name: Checkout
2023-09-21 00:45:41 +02:00
uses: actions/checkout@v3
2021-10-27 17:42:17 +02:00
- name: Install dependencies
2023-09-21 00:45:41 +02:00
run: brew install qt6 protobuf
2021-10-27 17:42:17 +02:00
- name: Configure build
2023-09-21 00:45:41 +02:00
run: qmake PROTOBUF=/usr/local pbfplugin.pro
2021-10-27 17:42:17 +02:00
- name: Build project
run: make -j3