Skip to content

MacOS C++ make-specs #828

MacOS C++ make-specs

MacOS C++ make-specs #828

Workflow file for this run

name: MacOS C++ make-specs
'on':
workflow_dispatch:
inputs:
extra_resolve_options:
description: Extra Resolve Options
required: false
schedule:
- cron: 0 1 * * *
push:
branches:
- master
pull_request:
env:
EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }}
jobs:
cxx_mkspec:
name: Apple Big Sur (ARM)
runs-on:
- self-hosted
- macOS
- ARM64
- builder
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure
run: python3 waf configure --git_protocol=git@ $EXTRA_RESOLVE_OPTIONS
- name: Build
run: 'echo "::add-matcher::.github/gcc-problem-matcher.json"
python3 waf
'
- name: Test
run: python3 waf --run_tests --run_cmd="%s --os=mac --compiler=clang --arch=arm"
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true