Revert "try different strategy to skip coverage on forks"

This reverts commit cae64ae5a4.
This commit is contained in:
bitfl0wer 2023-11-20 13:33:40 +01:00
parent cae64ae5a4
commit 06574c2708
No known key found for this signature in database
GPG Key ID: 0ACD574FCF5226CF
1 changed files with 3 additions and 9 deletions

View File

@ -15,9 +15,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set coverage flag
id: cov-flag
run: echo ::set-output name=flag::${{ github.event.pull_request.head.repo.fork == false }}
- uses: actions/checkout@v4
- name: Clone spacebar server
run: |
@ -49,7 +46,7 @@ jobs:
cargo test --verbose --all-features
fi
- name: Upload coverage for Linux
if: steps.cov-flag.outputs.flag == 'true'
if: ${{ secrets.COVERALLS_REPO_TOKEN }}
uses: actions/upload-artifact@v2
with:
name: coverage-linux
@ -57,9 +54,6 @@ jobs:
macos:
runs-on: macos-latest
steps:
- name: Set coverage flag
id: cov-flag
run: echo ::set-output name=flag::${{ github.event.pull_request.head.repo.fork == false }}
- uses: actions/checkout@v4
- name: Clone spacebar server
run: |
@ -92,7 +86,7 @@ jobs:
SAFARIDRIVER=$(which safaridriver) CHROMEDRIVER=$(which chromedriver) GECKODRIVER=$(which geckodriver) cargo test --target wasm32-unknown-unknown --no-default-features --features="client, rt"
fi
- name: Upload coverage for macOS
if: steps.cov-flag.outputs.flag == 'true'
if: ${{ secrets.COVERALLS_REPO_TOKEN }}
uses: actions/upload-artifact@v2
with:
name: coverage-macos
@ -100,7 +94,7 @@ jobs:
upload-coverage:
needs: [linux, macos]
if: needs.linux.outputs.flag == 'true' && needs.macos.outputs.flag == 'true'
if: ${{ secrets.COVERALLS_REPO_TOKEN }}
runs-on: ubuntu-latest
steps:
- name: Download all workflow run artifacts