Skip to content

Commit

Permalink
documentation fix and added windows to testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderlerch committed Jun 17, 2022
1 parent 65e0b79 commit d6fcdff
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,19 @@ jobs:
- name: test
working-directory: ${{github.workspace}}/bld
run: ctest -C ${{env.BUILD_TYPE}}

windows:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2

- name: configure
run: cmake -B ${{github.workspace}}/bld -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DWITH_TESTS=1

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

- name: test
working-directory: ${{github.workspace}}/bld
run: ctest -C ${{env.BUILD_TYPE}}
2 changes: 2 additions & 0 deletions src/ACA/FeatureFromBlock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -674,6 +674,8 @@ class CFeatureSpectralRolloff : public CFeatureFromBlockIf
float m_fKappa = 0.85F; //!< bandwidth parameter
};

/*! \brief class for computation of the tonal power ratio
*/
class CFeatureSpectralTonalPowerRatio : public CFeatureFromBlockIf
{
public:
Expand Down

0 comments on commit d6fcdff

Please sign in to comment.