chdman/.github/workflows/ci-macos.yml
CharlesThobe 33e60253d9 CI stuff
2022-04-18 00:39:17 +02:00

43 lines
917 B
YAML

name: CI (macOS)
on:
# push:
# paths:
# - '.github/**'
# - '3rdparty/**'
# - 'hash/**'
# - 'scripts/**'
# - 'src/**'
# - 'CMakeLists.txt'
# - 'cmake_subdirs/**'
# pull_request:
# paths:
# - '.github/**'
# - '3rdparty/**'
# - 'hash/**'
# - 'scripts/**'
# - 'src/**'
# - 'CMakeLists.txt'
# - 'cmake_subdirs/**'
workflow_dispatch:
jobs:
build-macos:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: brew install ninja
- name: Build
run: |
cmake -G Ninja
ninja
- name: 'Get Previous tag'
id: previoustag
uses: "WyriHaximus/github-action-get-previous-tag@v1"
with:
fallback: test
- uses: actions/upload-artifact@v2
with:
name: chdman-macos-${{ steps.previoustag.outputs.tag }}
path: chdman