ci: change if always() to if not cancelled on test results uploads

Signed-off-by: Spencer Murray <spencer.murray@sentry.io>
pull/52179/head
Spencer Murray 9 months ago
parent 9c3bdf2647
commit 0395eaacbb
No known key found for this signature in database
GPG Key ID: 86F0F56E99B25932
  1. 2
      .github/workflows/files-external-ftp.yml
  2. 4
      .github/workflows/files-external-s3.yml
  3. 2
      .github/workflows/files-external-sftp.yml
  4. 2
      .github/workflows/files-external-smb.yml
  5. 2
      .github/workflows/files-external-webdav.yml
  6. 2
      .github/workflows/files-external.yml
  7. 1
      .github/workflows/node-test.yml
  8. 2
      .github/workflows/object-storage-azure.yml
  9. 2
      .github/workflows/object-storage-s3.yml
  10. 2
      .github/workflows/object-storage-swift.yml
  11. 2
      .github/workflows/phpunit-mariadb.yml
  12. 2
      .github/workflows/phpunit-memcached.yml
  13. 2
      .github/workflows/phpunit-mysql-sharding.yml
  14. 2
      .github/workflows/phpunit-mysql.yml
  15. 2
      .github/workflows/phpunit-nodb.yml
  16. 2
      .github/workflows/phpunit-oci.yml
  17. 2
      .github/workflows/phpunit-pgsql.yml
  18. 2
      .github/workflows/phpunit-sqlite.yml

@ -107,7 +107,7 @@ jobs:
flags: phpunit-files-external-ftp
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-files-external-ftp

@ -105,7 +105,7 @@ jobs:
flags: phpunit-files-external-s3
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-files-external-s3
@ -179,7 +179,7 @@ jobs:
flags: phpunit-files-external-s3
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-files-external-s3

@ -96,7 +96,7 @@ jobs:
flags: phpunit-files-external-sftp
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-files-external-sftp

@ -101,7 +101,7 @@ jobs:
flags: phpunit-files-external-smb
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-files-external-smb

@ -98,7 +98,7 @@ jobs:
flags: phpunit-files-external-webdav
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-files-external-webdav

@ -86,7 +86,7 @@ jobs:
flags: phpunit-files-external-generic
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-files-external-generic

@ -104,6 +104,7 @@ jobs:
files: ./coverage/lcov.info
- name: Upload test results
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
jsunit:

@ -111,7 +111,7 @@ jobs:
flags: phpunit-azure
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-azure

@ -117,7 +117,7 @@ jobs:
flags: phpunit-s3
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-s3

@ -107,7 +107,7 @@ jobs:
flags: phpunit-swift
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-swift

@ -130,7 +130,7 @@ jobs:
flags: phpunit-mariadb
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-mariadb

@ -107,7 +107,7 @@ jobs:
flags: phpunit-memcached
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-memcached

@ -165,7 +165,7 @@ jobs:
flags: phpunit-mysql
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-mysql

@ -130,7 +130,7 @@ jobs:
flags: phpunit-mysql
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-mysql

@ -113,7 +113,7 @@ jobs:
flags: phpunit-nodb
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-nodb

@ -135,7 +135,7 @@ jobs:
flags: phpunit-oci
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-oci

@ -125,7 +125,7 @@ jobs:
flags: phpunit-postgres
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-postgres

@ -111,7 +111,7 @@ jobs:
flags: phpunit-sqlite
- name: Upload test results
if: always()
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1.1.0
with:
flags: phpunit-sqlite

Loading…
Cancel
Save