Skip to content

Commit

Permalink
Merge branch 'thestk:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
necoaudio authored Oct 22, 2024
2 parents 6a11a59 + af3b361 commit 9ddf539
Show file tree
Hide file tree
Showing 10 changed files with 84 additions and 108 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
Tarball:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -18,7 +18,7 @@ jobs:
(./autogen.sh || (cat config.log; false))
&& make distcheck && make clean
- name: Archive dist tarball artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: rtaudio-dev-tarball
path: rtaudio-*.tar.gz
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
with:
fetch-depth: 0
- name: install dependencies
run: brew install autoconf-archive automake cmake meson
run: brew install autoconf-archive automake cmake meson libtool
- name: automake
run:
env NOCONFIGURE=1 ./autogen.sh && mkdir bld-automake && cd bld-automake
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -280,12 +280,12 @@ target_compile_definitions(rtaudio PRIVATE RTAUDIO_EXPORT)
target_link_libraries(rtaudio ${LINKLIBS})

# Subdirs
include(CTest)

if (NOT DEFINED RTAUDIO_BUILD_TESTING OR RTAUDIO_BUILD_TESTING STREQUAL "")
set(RTAUDIO_BUILD_TESTING ${BUILD_TESTING})
endif()
if (RTAUDIO_BUILD_TESTING)
include(CTest)
add_subdirectory(tests)
endif()

Expand Down
Loading

0 comments on commit 9ddf539

Please sign in to comment.