Skip to content

Commit

Permalink
Update build.yml to only run codecov on linux for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ascopes authored Nov 12, 2023
1 parent 9e070bc commit 12138c7
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,6 @@ jobs:
java-version: [11, 21]

steps:
- name: Install system dependencies
shell: bash
run: |-
case "${{ matrix.os-name }}" in
windows-*)
# Ensure shasum is available.
choco install psutils --ignore-checksums
;;
macos-*)
# Upgrade bash, ensure shasum is available.
brew install bash coreutils
;;
esac
- name: Checkout
uses: actions/checkout@v4

Expand All @@ -48,7 +34,7 @@ jobs:

- name: Publish to codecov
continue-on-error: true
if: always()
if: matrix.os-name == "ubuntu-latest" && always()
shell: bash
run: |-
curl --fail https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring \
Expand Down

0 comments on commit 12138c7

Please sign in to comment.