Skip to content

Commit

Permalink
ci: disable codecov for s390x for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Zxilly committed Nov 21, 2024
1 parent 7f96005 commit c08d72f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
7 changes: 0 additions & 7 deletions .github/actions/setup-script/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,6 @@ runs:
shell: bash
run: pipx install poetry

- name: Setup Python
uses: actions/setup-python@2bd53f9a4d1dd1cd21eaffcc01a7b91a8e73ea4c
with:
python-version: '3.12'
check-latest: true
cache: 'poetry'

- name: Add python dependencies
shell: bash
working-directory: ./scripts
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/built-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:

- name: Upload coverage
uses: codecov/codecov-action@5c47607acb93fed5485fdbf7232e8a31425f672a # v5.0.2
if: ${{ !cancelled() }}
if: ${{ !cancelled() && matrix.os != 'self-hosted' }}
with:
disable_search: true
token: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -123,7 +123,7 @@ jobs:
verbose: true

- name: Upload test results to Codecov
if: ${{ !cancelled() && matrix.test-type == 'unit' }}
if: ${{ !cancelled() && matrix.test-type == 'unit' && matrix.os != 'self-hosted' }}
uses: codecov/test-results-action@9739113ad922ea0a9abb4b2c0f8bf6a4aa8ef820 # v1.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
name: Web UI tests
flags: ui
file: ./ui/test-results.xml
files: ./ui/test-results.xml
verbose: true

build-explorer:
Expand Down

0 comments on commit c08d72f

Please sign in to comment.