-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1642 from r2d4/arch-cask-autoupdate
Automate updates to AUR and brew-cask
- Loading branch information
Showing
4 changed files
with
100 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
#!/bin/bash | ||
|
||
# Copyright 2016 The Kubernetes Authors All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
git config user.name "minikube-bot" | ||
git config user.email "[email protected]" | ||
|
||
REPLACE_PKG_VERSION=${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_BUILD} | ||
REPLACE_MINIKUBE_LINUX_SHA256=$(awk '{ print $1 }' out/minikube-linux-amd64.sha256) | ||
REPLACE_MINIKUBE_DARWIN_SHA256=$(awk '{ print $1 }' out/minikube-darwin-amd64.sha256) | ||
REPLACE_CASK_CHECKPOINT=$(curl \ | ||
--compressed \ | ||
--location \ | ||
--user-agent 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36' \ | ||
https://github.com/kubernetes/minikube/releases.atom \ | ||
| sed 's|<pubDate>[^<]*</pubDate>||g' \ | ||
| shasum -a 256 | awk '{ print $1 }') | ||
MINIKUBE_ROOT=$PWD | ||
|
||
GIT_SSH_COMMAND='ssh -i $ARCH_SSH_KEY' git clone ssh://[email protected]/minikube.git aur-minikube | ||
pushd aur-minikube >/dev/null | ||
sed -e "s/\$PKG_VERSION/${REPLACE_PKG_VERSION}/g" \ | ||
-e "s/\$MINIKUBE_LINUX_SHA256/${REPLACE_MINIKUBE_LINUX_SHA256}/g" \ | ||
$MINIKUBE_ROOT/installers/linux/archlinux/PKGBUILD > PKGBUILD | ||
sed -e "s/\$PKG_VERSION/${REPLACE_PKG_VERSION}/g" \ | ||
-e "s/\$MINIKUBE_LINUX_SHA256/${REPLACE_MINIKUBE_LINUX_SHA256}/g" \ | ||
$MINIKUBE_ROOT/installers/linux/archlinux/.SRCINFO > .SRCINFO | ||
git add PKGBUILD .SRCINFO | ||
git commit -m "Upgrade to version ${REPLACE_PKG_VERSION}" | ||
|
||
GIT_SSH_COMMAND='ssh -i $ARCH_SSH_KEY' git push origin master | ||
|
||
popd >/dev/null | ||
|
||
git clone --depth 1 [email protected]:minikube-bot/homebrew-cask.git # dont't pull entire history | ||
|
||
pushd homebrew-cask >/dev/null | ||
git checkout -b ${REPLACE_PKG_VERSION} | ||
sed -e "s/\$PKG_VERSION/${REPLACE_PKG_VERSION}/g" \ | ||
-e "s/\$MINIKUBE_DARWIN_SHA256/${REPLACE_MINIKUBE_DARWIN_SHA256}/g" \ | ||
-e "s/\$CASK_CHECKPOINT/${REPLACE_CASK_CHECKPOINT}/g" \ | ||
$MINIKUBE_ROOT/installers/darwin/brew-cask/minikube.rb.tmpl > Casks/minikube.rb | ||
git add Casks/minikube.rb | ||
git commit -F- <<EOF | ||
Update minikube to ${REPLACE_PKG_VERSION} | ||
- [x] brew cask audit --download {{cask_file}} is error-free. | ||
- [x] brew cask style --fix {{cask_file}} reports no offenses. | ||
- [x] The commit message includes the cask’s name and version. | ||
EOF | ||
git push origin ${REPLACE_PKG_VERSION} | ||
curl -v -k -u minikube-bot:${BOT_PASSWORD} -X POST https://api.github.com/repos/caskroom/homebrew-cask/pulls \ | ||
-d @- <<EOF | ||
{ | ||
"title": "Update minikube to ${REPLACE_PKG_VERSION}", | ||
"head": "minikube-bot:${REPLACE_PKG_VERSION}", | ||
"base": "master" | ||
} | ||
EOF | ||
popd >/dev/null | ||
|
||
rm -rf aur-minikube homebrew-cask |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
cask 'minikube' do | ||
version '$PKG_VERSION' | ||
sha256 '$MINIKUBE_DARWIN_SHA256' | ||
|
||
# storage.googleapis.com/minikube was verified as official when first introduced to the cask | ||
url "https://storage.googleapis.com/minikube/releases/v#{version}/minikube-darwin-amd64" | ||
appcast 'https://github.com/kubernetes/minikube/releases.atom', | ||
checkpoint: '$CASK_CHECKPOINT' | ||
name 'Minikube' | ||
homepage 'https://github.com/kubernetes/minikube' | ||
|
||
depends_on formula: 'kubernetes-cli' | ||
container type: :naked | ||
|
||
binary 'minikube-darwin-amd64', target: 'minikube' | ||
|
||
zap delete: '~/.minikube' | ||
end |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# Maintainer: Matt Rickard <[email protected]> | ||
|
||
pkgname=minikube | ||
pkgver=0.18.0 | ||
pkgver=$PKG_VERSION | ||
pkgrel=1 | ||
pkgdesc="Minikube is a tool that makes it easy to run Kubernetes locally" | ||
url="https://github.com/kubernetes/minikube" | ||
|
@@ -19,7 +19,7 @@ optdepends=( | |
makedepends=() | ||
|
||
source=(minikube_$pkgver::https://storage.googleapis.com/minikube/releases/v$pkgver/minikube-linux-amd64) | ||
sha256sums=('c1dd2eb704ec29000d2c6080ca18660b862eedf0eb1c933aed746e93e6e5adea') | ||
sha256sums=('$MINIKUBE_LINUX_SHA256') | ||
package() { | ||
cd "$srcdir" | ||
install -d "$pkgdir/usr/bin" | ||
|