Skip to content

Commit

Permalink
Add GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmacha committed Jun 29, 2023
1 parent 424b2ea commit 0779e45
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/cmake-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CMake Build
on:
- push
jobs:
build:
name: Visual Studio 2022
runs-on: windows-2022
steps:
- name: CMake Setup
uses: lukka/get-cmake@latest
- name: CMake Build
uses: lukka/run-cmake@v10
with:
cmakeListsTxtPath: 'CMakeLists.txt'
buildPreset: 'x86-release'
- name: CMake Install
run: cmake --install
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: dist-without-markdown
path: |
out/install/x86-release/bin/*.dll
out/install/x86-release/zBassMusic.vdf

0 comments on commit 0779e45

Please sign in to comment.