-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update slack-notifier to 0.9.0 (#4609)
Co-authored-by: Nuru <Nuru@users.noreply.github.com>
- Loading branch information
1 parent
ff07224
commit cc39d3d
Showing
6 changed files
with
21 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,24 @@ | ||
include ../../tasks/Makefile.vendor_includes | ||
|
||
# Package details | ||
export VENDOR ?= cloudposse | ||
# PACKAGE_VERSION | ||
# https://github.com/cloudposse/slack-notifier/releases/download/0.5.1/slack-notifier_0.5.1_linux_arm64 | ||
export DOWNLOAD_URL ?= $(PACKAGE_REPO_URL)/releases/download/$(PACKAGE_VERSION)/$(PACKAGE_NAME)_$(PACKAGE_VERSION)_$(OS)_$(ARCH) | ||
export PACKAGE_EXE := slack-notifier | ||
export PACKAGE_NAME = slack-notifier | ||
# PACKAGE_URL | ||
# https://github.com/cloudposse/slack-notifier/releases/download/0.9.0/slack-notifier_0.9.0_linux_arm64.zip | ||
export DOWNLOAD_URL = https://github.com/cloudposse/slack-notifier/releases/download/$(PACKAGE_VERSION)/$(PACKAGE_EXE)_$(PACKAGE_VERSION)_$(OS)_$(ARCH).zip | ||
export APK_BUILD_TEMPLATE ?= APKBUILD.github-binary | ||
export APKBUILD_DEPENDS += libc6-compat | ||
|
||
include ../../tasks/Makefile.vendor_includes | ||
|
||
install: export PACKAGE_NAME = slack-notifier_v$(PACKAGE_VERSION) | ||
install: | ||
echo $(DOWNLOAD_URL) | ||
$(call download_binary) | ||
$(call download_zip) | ||
|
||
test: | ||
($(PACKAGE_EXE) || true) 2>&1 | grep author_icon | ||
# Custom post-package processing (Note the double colon to append to current inherited package/prepare task) | ||
## This may be required for apk building | ||
package/prepare:: | ||
mv src/$(PACKAGE_NAME)_v$(PACKAGE_VERSION) src/$(PACKAGE_EXE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.8.0 | ||
0.9.0 |