Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

coveralls 0.6.15 #62

Closed
25 changes: 24 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
name: brew pr-pull
permissions:
actions: write
contents: write
pull-requests: write
on:
pull_request_target:
types:
Expand All @@ -24,10 +28,29 @@ jobs:
PULL_REQUEST: ${{ github.event.pull_request.number }}
run: brew pr-pull --debug --tap="$GITHUB_REPOSITORY" "$PULL_REQUEST"

# Debug: Show commit log (last 5 commits)
- name: Show commit log (last 5 commits)
run: git log -n 5 --oneline

# Debug: Show contents of .git/HEAD
- name: Show .git/HEAD
run: cat .git/HEAD

# Debug: Show contents of .git/logs/HEAD
- name: Show .git logs
run: cat .git/logs/HEAD

# Debug: Upload workpace state
- name: Upload workspace state
uses: actions/upload-artifact@v3
with:
name: workspace-state-after
path: .

- name: Push commits
uses: Homebrew/actions/git-try-push@master
with:
token: ${{ github.token }}
token: ${{ secrets.HOMEBREW_TOKEN }}
branch: main

- name: Delete branch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
test-bot:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-12, macos-13]
os: [ubuntu-20.04, ubuntu-22.04, macos-13, macos-latest]
runs-on: ${{ matrix.os }}
env:
HOMEBREW_NO_INSTALL_FROM_API: 1
Expand Down
14 changes: 8 additions & 6 deletions Formula/coveralls.rb
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
class Coveralls < Formula
desc "Self-contained, universal coverage uploader for Coveralls"
homepage "https://github.com/coverallsapp/coverage-reporter"
url "https://github.com/coverallsapp/coverage-reporter/archive/refs/tags/v0.6.14.tar.gz"
sha256 "32ddfdd3d6b9001ccf394d9679c919f506eb35cb83dcba8fd17ba2c898bff027"
url "https://github.com/coverallsapp/coverage-reporter/archive/refs/tags/v0.6.15.tar.gz"
sha256 "b29d4b2c61ebce695c35077099da3a53b72c1280f77da4a220288ff306508e79"
license "MIT"

bottle do
root_url "https://github.com/coverallsapp/homebrew-coveralls/releases/download/coveralls-0.6.14"
sha256 cellar: :any, ventura: "ab6b4363091e8fa9bbc8a9564f60e568850ed2bd48e17213c5ba524f6ffce4ae"
sha256 cellar: :any, monterey: "1297cfdf791ae7a8b1782b241911d408d45ff26e39efa550327a6eab814f815e"
sha256 cellar: :any_skip_relocation, x86_64_linux: "d63e1305e71eb57b76b0a818c390dec73f2dc9dbabab80c10ce4de3b37c7e646"
root_url "https://github.com/coverallsapp/homebrew-coveralls/releases/download/coveralls-0.6.15"
sha256 cellar: :any, arm64_sonoma: "49ba6c2386ffc17a03aee5483f41c2ba03e272d8224e9165a1bdf10307fcd9a8"
sha256 cellar: :any, ventura: "5fadee64a25c83f610c9583ca86d865262f6dff6bad951f7bc3a73c6caebdd52"
sha256 cellar: :any_skip_relocation, x86_64_linux: "819b980135dad736042713d4fe949fec793b5e26028b6364e808413091dd1cb7"
end

depends_on "crystal" => :build
depends_on "bdw-gc"
depends_on "libevent"
depends_on "libyaml"
depends_on "openssl@3"
depends_on "pcre2"
depends_on "sqlite"
depends_on "zlib"

uses_from_macos "libxml2"

Expand Down
Loading