Skip to content

DIAG v14 (EQSND): unconditional [diag-init] log at Init+0x113 + [diag… #225

DIAG v14 (EQSND): unconditional [diag-init] log at Init+0x113 + [diag…

DIAG v14 (EQSND): unconditional [diag-init] log at Init+0x113 + [diag… #225

Workflow file for this run

name: native
on:
push:
paths:
- "native/**"
- ".github/workflows/native.yml"
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
defaults:
run:
working-directory: native
steps:
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
- name: Cache vcpkg binaries
uses: actions/cache@v4
with:
path: ~\AppData\Local\vcpkg\archives
key: vcpkg-${{ hashFiles('native/vcpkg.json', 'native/vcpkg-configuration.json') }}
restore-keys: vcpkg-
- name: Configure
run: cmake --preset release
env:
VCPKG_ROOT: C:\vcpkg
- name: Build
run: cmake --build build/release
- name: Upload DLL
uses: actions/upload-artifact@v4
with:
name: MEO-dll
path: |
native/build/release/MEO.dll
native/build/release/MEO.pdb
if-no-files-found: error