aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
authorRandy Palamar <randy@rnpnr.xyz>2025-02-22 12:43:14 -0700
committerRandy Palamar <randy@rnpnr.xyz>2025-02-22 12:46:04 -0700
commitb68b822bd0c329a170a84ae2ca24014971b330b4 (patch)
treee346464c1dfce3316268cedcdf31c38d37c28236 /.github/workflows/macos.yml
parent54a2036c6cc6a97e9ea9ced38ca06c3f47f734a6 (diff)
downloadvis-b68b822bd0c329a170a84ae2ca24014971b330b4.tar.gz
vis-b68b822bd0c329a170a84ae2ca24014971b330b4.tar.xz
ci: also don't fail when the coverage file doesn't download correctly
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 44ad488..07f7a42 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -50,8 +50,8 @@ jobs:
run: |
curl -s https://codecov.io/bash > codecov
curl -s https://raw.githubusercontent.com/codecov/codecov-bash/master/SHA256SUM > codecov.sha256
- if ! sha256sum -c --ignore-missing --status codecov.sha256 ; then
+ if sha256sum -c --ignore-missing --status codecov.sha256 ; then
+ bash < codecov || true
+ else
echo "Download checksum verification failed"
- exit 1
fi
- bash < codecov || true