Skip to content
Open
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
10 changes: 4 additions & 6 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run-code-coverage:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest

steps:
Expand All @@ -32,12 +32,10 @@ jobs:
sudo apt-get -y install lcov
shell: bash

- name: Install MESA on ${{ runner.os }} with SDK 26.3.2 and coverage enabled
- name: Install MESA on ${{ runner.os }} with the default SDK and coverage enabled
uses: ./.github/actions/install-mesa
env:
WITH_COVERAGE: yes
with:
sdk: "26.3.2"

- name: Run gcov
run: |
Expand Down Expand Up @@ -69,9 +67,9 @@ jobs:

- name: Save the html folder as an artifact
uses: actions/upload-pages-artifact@v3
with:
with:
path: './.htmlcov/'

- name: Deploy to Github Pages
uses: actions/deploy-pages@v4
id: deployment
Loading