mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-26 04:22:05 +02:00
e92bbe32ce
* makes context tokentype a public var * passes artifacts object into client upload function. extracts gitlab upload hash from url * adds gitlab url to brew config * build brew formula depending on token type * fixes client for release tests * fixes exiting brew tests * fixes scoop test with dummy client adaption * uses new artifact upload hash * fixes brew usage * updates gitlab createFile for brew * fixes logging for non-existing file in gitlab logging * fix: gitlab createFile * fix: removes encoding from gitlab create and update file opts * fix: gitlab upload and artifact set upload hash * fix: linter * changed artifact item to a pointer in ctx * docs: updates homebrew * feat: enables scoop for gitlab release * fix: scoop panic for pointer access * chore: rename formula build func for brew * chore: brew removes comments * fix: brew tests * test: updates brew tests * docs: updates homebrew * test: for token type not implemented for brew * tests: for multiple linux builds * fix: build artifacts are pointer in scoop * test: for scoop and gitlab * test: for artifacts set upload hash * adds missing files after adaption * chore: removes and clarifies comments * fix: moves artifact upload hash to extra map * adds comment why we initialize the extra map
41 lines
825 B
Plaintext
41 lines
825 B
Plaintext
# This file was generated by GoReleaser. DO NOT EDIT.
|
|
class GitlabEnterpriseUrl < Formula
|
|
desc "A run pipe test formula and FOO=foo_is_bar"
|
|
homepage "https://gitlab.com/goreleaser"
|
|
version "1.0.1"
|
|
bottle :unneeded
|
|
|
|
if OS.mac?
|
|
url "https://gitlab.my-company.org/test/test/uploads/820ead5d9d2266c728dce6d4d55b6460/bin.tar.gz"
|
|
sha256 "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
|
elsif OS.linux?
|
|
end
|
|
|
|
depends_on "zsh"
|
|
depends_on "bash"
|
|
|
|
conflicts_with "gtk+"
|
|
conflicts_with "qt"
|
|
|
|
def install
|
|
bin.install "gitlab_enterprise_url"
|
|
end
|
|
|
|
def caveats; <<~EOS
|
|
don't do this gitlab_enterprise_url
|
|
EOS
|
|
end
|
|
|
|
plist_options :startup => false
|
|
|
|
def plist; <<~EOS
|
|
<xml>whatever</xml>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "true"
|
|
system "#{bin}/foo -h"
|
|
end
|
|
end
|