mirror of
https://github.com/tumic0/QtPBFImagePlugin.git
synced 2024-11-24 03:35:54 +01:00
Added GitHub actions OS X build
This commit is contained in:
parent
e22ea9aa12
commit
ae8b2f00db
22
.github/workflows/osx.yml
vendored
Normal file
22
.github/workflows/osx.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
name: OS X
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: QtPBFImagePlugin
|
||||
runs-on: macos-10.15
|
||||
steps:
|
||||
- name: Set environment variables
|
||||
run: echo "PATH=/usr/local/opt/qt@5/bin:$PATH" >> $GITHUB_ENV
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Install dependencies
|
||||
run: brew install qt5 protobuf
|
||||
- name: Configure build
|
||||
run: qmake PROTOBUF=/usr/local pbfplugin.pro
|
||||
- name: Build project
|
||||
run: make -j3
|
Loading…
Reference in New Issue
Block a user