mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ff30a7b981
Introduced in https://github.blog/changelog/2019-09-30-github-actions-event-filtering-updates/
28 lines
539 B
YAML
28 lines
539 B
YAML
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@master
|
|
- name: Build
|
|
shell: cmd
|
|
run: |
|
|
cd extensions/build
|
|
cmake .. && cmake --build .
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@master
|
|
with:
|
|
name: ace3_extensions-${{ matrix.os }}-debug
|
|
path: extensions/build
|