Skip to content

Commit

Permalink
fix workflows (hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
vintagepc committed Apr 25, 2024
1 parent 4fcbb2b commit a59fd76
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ jobs:
- name: Install dependencies
run: |
brew install libffi gettext glib pkg-config autoconf automake pixman ninja make
pip3 install setuptools
- name: Configure build
run: cd ${{ runner.workspace }}/MINI404 && ./configure --target-list="buddy-softmmu"
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,13 @@ jobs:
run: cd ${{ runner.workspace }}/MINI404/build/meson-logs && lcov -extract coverage.info '*/arm/prusa/*' --rc lcov_branch_coverage=1 --output-file=c2.info && lcov -remove c2.info '*/3rdParty/*' --rc lcov_branch_coverage=1 --output-file=c2.info

- name: Upload to codecov.io
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
# Comma-separated list of files to upload
files: ${{ runner.workspace }}/MINI404/build/meson-logs/c2.info
disable_search: true
file: ${{ runner.workspace }}/MINI404/build/meson-logs/c2.info
# Specify whether or not CI build should fail if Codecov runs into an error during upload
fail_ci_if_error: true
# Comma-separated list, see the README for options and their usage
Expand Down

0 comments on commit a59fd76

Please sign in to comment.