Skip to content

Workflow file for this run

name: Build and test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Configure CMake
run: cmake -B build -S ${{ github.workspace }}
- name: Build
run: cmake --build build --target stfc-community-patch -j --config Release
- name: Package
run: |
mv build/Release/stfc-community-patch.dll build/Release/version.dll
tar -c -a -f stfc-community-patch.zip -C build/Release *.dll