ACE3/.github/workflows/extensions.yml

30 lines
561 B
YAML
Raw Normal View History

name: Extensions
on:
pull_request:
paths:
- 'extensions/**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
steps:
- name: Checkout the source code
uses: actions/checkout@v4
- name: Build
shell: cmd
run: |
cd extensions
mkdir build
cd build
cmake .. && cmake --build .
- name: Upload Artifact
2024-02-29 03:54:08 +00:00
uses: actions/upload-artifact@v4
with:
name: ace3_extensions-${{ matrix.os }}-debug
path: extensions/build