Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
BUILD_TYPE: MinSizeRel

jobs:
build:
Expand Down Expand Up @@ -47,3 +47,15 @@ jobs:

- name: Tests
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target run-tests

- uses: actions/upload-artifact@v4
if: ${{ matrix.name == 'windows' }}
with:
# only on windows:
# on osx, the binaries wouldn't be easily runnable anyways due to code
# signing bullshit; on linux, the test binaries are built with asan and
# i don't want to distribute those
name: win-binaries
path: |
${{ github.workspace }}/build/asar/bin/**/asar.exe
${{ github.workspace }}/build/asar/lib/**/asar.dll