Skip to content

Merge branch 'pgrete/fix-deref-counter-for-restarts' into pgrete/pgre… #34

Merge branch 'pgrete/fix-deref-counter-for-restarts' into pgrete/pgre…

Merge branch 'pgrete/fix-deref-counter-for-restarts' into pgrete/pgre… #34

Workflow file for this run

name: CI macOS
on: [pull_request]
# Cancel "duplicated" workflows triggered by pushes to internal
# branches with associated PRs.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
env:
CTEST_OUTPUT_ON_FAILURE: 1
CMAKE_BUILD_PARALLEL_LEVEL: 4 # num threads for build
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- name: Configure
run: |

Check failure on line 30 in .github/workflows/ci-macos.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci-macos.yml

Invalid workflow file

You have an error in your yaml syntax on line 30
cmake -B build \
-DCMAKE_BUILD_TYPE=Release \
- name: Build
run: cmake --build build
- name: Test
run: |
cd build
ctest -LE 'regression'
- uses: actions/upload-artifact@v3
with:
name: configure-log-unit-macos
path: build/CMakeFiles/CMakeOutput.log
retention-days: 3