Update Utils.cpp #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MacOS | |
on: | |
push: | |
branches: [ macos_build ] | |
pull_request: | |
branches: [ macos_build ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- runner: macos-latest | |
cpu_count: 4 | |
runs-on: ${{ matrix.runner }} | |
steps: | |
- name: Checkout Bobcat repository | |
uses: actions/checkout@v3 | |
with: | |
path: Bobcat | |
- name: Install dependencies (macOS) | |
if: matrix.runner == 'macos-latest' | |
run: brew update | |
- name: Checkout U++ repository | |
uses: actions/checkout@v3 | |
with: | |
repository: ultimatepp/ultimatepp | |
path: upp-source | |
- name: Configure and Build U++ | |
working-directory: upp-source | |
run: | | |
./configure | |
make -f ./umkMakefile -j 4 | |
- name: Build Bobcat | |
working-directory: Bobcat | |
run: | | |
../upp-source/umk ./,../upp-source/uppsrc Bobcat CLANG.bm -brvh +GUI,SHARED build/Bobcat |