Skip to content

Commit

Permalink
[jx] add tool (#287)
Browse files Browse the repository at this point in the history
* [jx] add tool

* fix: install as tarball, not binary
  • Loading branch information
zloeber authored and osterman committed Nov 29, 2019
1 parent f24eff7 commit 15a0694
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/auto-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ vendor/helmfile: vendor/helmfile/**
vendor/htmltest: vendor/htmltest/**
vendor/hugo: vendor/hugo/**
vendor/json2hcl: vendor/json2hcl/**
vendor/jx: vendor/jx/**
vendor/k6: vendor/k6/**
vendor/kfctl: vendor/kfctl/**
vendor/kind: vendor/kind/**
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ helmfile 0.93.2 Deploy Kubernetes Helm Charts
htmltest 0.10.3 :white_check_mark: Test generated HTML for problems
hugo 0.59.1 The world’s fastest framework for building websites.
json2hcl 0.0.6 Convert JSON to HCL, and vice versa
jx 2.0.1 Jenkins-X
k6 0.25.1 A modern load testing tool, using Go and JavaScript - https://k6.io
kfctl 0.7.0 Machine Learning Toolkit for Kubernetes
kind 0.6.0 A tool for running local Kubernetes clusters using Docker
Expand Down
1 change: 1 addition & 0 deletions docs/targets.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ helmfile 0.93.2 Deploy Kubernetes Helm Charts
htmltest 0.10.3 :white_check_mark: Test generated HTML for problems
hugo 0.59.1 The world’s fastest framework for building websites.
json2hcl 0.0.6 Convert JSON to HCL, and vice versa
jx 2.0.1 Jenkins-X
k6 0.25.1 A modern load testing tool, using Go and JavaScript - https://k6.io
kfctl 0.7.0 Machine Learning Toolkit for Kubernetes
kind 0.6.0 A tool for running local Kubernetes clusters using Docker
Expand Down
1 change: 1 addition & 0 deletions vendor/jx/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Jenkins-X
1 change: 1 addition & 0 deletions vendor/jx/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
MIT
26 changes: 26 additions & 0 deletions vendor/jx/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
## Typical Github binary release

## Package details
export VENDOR = jenkins-x
export PACKAGE_NAME = jx
export PACKAGE_REPO_NAME = jx
export DOWNLOAD_URL = $(PACKAGE_REPO_URL)/releases/download/v$(PACKAGE_VERSION)/jx-$(OS)-$(ARCH).tar.gz

## APK build specific requirements
export APK_BUILD_TEMPLATE = APKBUILD.github-binary
## Uncomment only if you need additional libraries
#export APKBUILD_DEPENDS += libc6-compat musl

include ../../tasks/Makefile.package
include ../../tasks/Makefile.apk

install:
$(call download_tarball)

test:
$(PACKAGE_EXE) --version

## This may be required for apk building and varies from package to package
## Custom post-package processing (Note the double colon to append to current inherited package/prepare task)
#package/prepare::
# mv src/jx-$(OS).$(ARCH)/jx src
1 change: 1 addition & 0 deletions vendor/jx/RELEASE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0
1 change: 1 addition & 0 deletions vendor/jx/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.0.1

0 comments on commit 15a0694

Please sign in to comment.