Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
nmoinvaz committed Jun 8, 2024
1 parent 6d06013 commit 962c94e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ jobs:

- name: Install packages (macOS)
if: runner.os == 'macOS'
run: brew install pkgconfig ${{ matrix.packages }}
run: brew install pkgconfig ${{ matrix.packages }} tree

- name: Install packages (Ubuntu)
if: runner.os == 'Linux' && matrix.packages
Expand All @@ -233,9 +233,15 @@ jobs:
choco uninstall --no-progress strawberryperl
choco install ninja --no-progress
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.x'

- name: Generate project files
shell: bash
run: |
tree /usr/local/opt/openssl
cmake -S ${{ matrix.build-src-dir || '.' }} -B ${{ matrix.build-dir || '.' }} ${{ matrix.cmake-args }} \
-D MZ_BUILD_TESTS=ON \
-D MZ_BUILD_UNIT_TESTS=ON \
Expand All @@ -254,11 +260,6 @@ jobs:
run: ctest --output-on-failure -C ${{ matrix.build-config || 'Release' }}
working-directory: ${{ matrix.build-dir }}

- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.x'

- name: Generate coverage report
shell: bash
if: always() && matrix.codecov
Expand Down

0 comments on commit 962c94e

Please sign in to comment.