Skip to content

format all

format all #52

Workflow file for this run

name: MacOS
on:
push:
paths:
- 'src/**'
- '.github/workflows/macos.yml'
pull_request:
paths:
- 'src/**'
- '.github/workflows/macos.yml'
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-10.15,macos-11.0]
qt_ver: [5.9.9,5.12.10,5.15.2]
qt_arch: [clang_64]
env:
targetName: TaoQuickApp
steps:
- name: prepare env
if: ${{ matrix.os == 'macos-11.0' }}
run: |
softwareupdate --all --install --force
sudo xcode-select --print-path
sudo xcode-select --switch /Library/Developer/CommandLineTools
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: ${{ matrix.qt_ver }}
cached: 'false'
- uses: actions/checkout@v1
with:
fetch-depth: 1
# submodules: 'true'
- name: build macos
run: |
qmake
make