Skip to content

Commit 772be22

Browse files
authored
Prepare for v0.9.0-rc.1 release (#9)
Signed-off-by: Tamal Saha <tamal@appscode.com>
1 parent c79a32c commit 772be22

337 files changed

Lines changed: 47890 additions & 41481 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
name: Go
2-
on: [push]
1+
name: CI
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- 'release-*'
7+
tags-ignore:
8+
- '*.*'
9+
310
jobs:
411

512
build:
613
name: Build
714
runs-on: ubuntu-latest
815
steps:
916

10-
- name: Set up Go 1.12
11-
uses: actions/setup-go@v1
12-
with:
13-
go-version: 1.12
14-
id: go
15-
1617
- name: Check out code into the Go module directory
1718
uses: actions/checkout@v1
1819

.github/workflows/release.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- '*.*'
7+
8+
jobs:
9+
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
steps:
14+
15+
- name: Check out code into the Go module directory
16+
uses: actions/checkout@v1
17+
18+
- name: Print version info
19+
id: semver
20+
run: |
21+
make version
22+
23+
- name: Set up Docker Buildx
24+
id: buildx
25+
uses: crazy-max/ghaction-docker-buildx@master
26+
with:
27+
version: latest
28+
29+
- name: Available platforms
30+
run: echo ${{ steps.buildx.outputs.platforms }}
31+
32+
- name: Build
33+
env:
34+
APPSCODE_ENV: prod
35+
run: |
36+
make release
37+
38+
- uses: actions/upload-artifact@master
39+
with:
40+
name: stash-cli-binaries
41+
path: bin

.travis.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ BIN_PLATFORMS := $(DOCKER_PLATFORMS) windows/amd64 darwin/amd64
5252
OS := $(if $(GOOS),$(GOOS),$(shell go env GOOS))
5353
ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH))
5454

55-
GO_VERSION ?= 1.12.6
55+
GO_VERSION ?= 1.12.10
5656
BUILD_IMAGE ?= appscode/golang-dev:$(GO_VERSION)-stretch
5757

5858
OUTBIN = bin/$(OS)_$(ARCH)/$(BIN)
@@ -204,7 +204,7 @@ lint: $(BUILD_DIRS)
204204
--env GO111MODULE=on \
205205
--env GOFLAGS="-mod=vendor" \
206206
$(BUILD_IMAGE) \
207-
golangci-lint run --enable $(ADDTL_LINTERS)
207+
golangci-lint run --enable $(ADDTL_LINTERS) --skip-dirs-use-default --deadline=10m
208208

209209
$(BUILD_DIRS):
210210
@mkdir -p $@

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![Go Report Card](https://goreportcard.com/badge/stash.appscode.dev/cli)](https://goreportcard.com/report/stash.appscode.dev/cli)
2-
[![Build Status](https://travis-ci.org/stashed/cli.svg?branch=master)](https://travis-ci.org/stashed/cli)
2+
[![Build Status](https://github.com/stashed/cli/workflows/CI/badge.svg)](https://github.com/stashed/cli/actions?workflow=CI)
33
[![Docker Pulls](https://img.shields.io/docker/pulls/appscode/stash.svg)](https://hub.docker.com/r/appscode/stash/)
44
[![Github All Releases](https://img.shields.io/github/downloads/stashed/cli/total.svg)](https://github.com/stashed/cli/releases)
55
[![Slack](https://slack.appscode.com/badge.svg)](https://slack.appscode.com)

go.mod

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ go 1.12
55
require (
66
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
77
github.com/MakeNowJust/heredoc v0.0.0-20171113091838-e9091a26100e // indirect
8-
github.com/appscode/go v0.0.0-20190722173419-e454bf744023
8+
github.com/appscode/go v0.0.0-20191006073906-e3d193d493fc
9+
github.com/evanphx/json-patch v4.5.0+incompatible
910
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
10-
github.com/gophercloud/gophercloud v0.0.0-20190520235722-e87e5f90e7e6 // indirect
11+
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
12+
github.com/json-iterator/go v1.1.6
13+
github.com/kubernetes-csi/external-snapshotter v1.2.0
1114
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
1215
github.com/pkg/errors v0.8.1
1316
github.com/spf13/cobra v0.0.5
@@ -16,32 +19,30 @@ require (
1619
k8s.io/cli-runtime v0.0.0-20190516231937-17bc0b7fcef5
1720
k8s.io/client-go v11.0.0+incompatible
1821
k8s.io/component-base v0.0.0-20190424053038-9fe063da3132
19-
k8s.io/klog v0.3.1 // indirect
2022
k8s.io/kube-openapi v0.0.0-20190510232812-a01b7d5d6c22 // indirect
2123
k8s.io/kubernetes v1.14.2
2224
k8s.io/utils v0.0.0-20190520173318-324c5df7d3f0 // indirect
23-
kmodules.xyz/client-go v0.0.0-20190802200916-043217632b6a
24-
kmodules.xyz/openshift v0.0.0-20190802201709-f05cf11ae73e
25-
stash.appscode.dev/stash v0.9.0-rc.0
25+
kmodules.xyz/client-go v0.0.0-20191006173540-91f8ee6b6b4b
26+
kmodules.xyz/objectstore-api v0.0.0-20191006080053-fc8b57fadcf0
27+
kmodules.xyz/openshift v0.0.0-20190808144841-c8f9a927f1d1
28+
stash.appscode.dev/stash v0.9.0-rc.1.0.20191007102408-f5a271be821a
2629
)
2730

2831
replace (
29-
contrib.go.opencensus.io/exporter/ocagent => contrib.go.opencensus.io/exporter/ocagent v0.3.0
30-
github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.3.0+incompatible
31-
github.com/census-instrumentation/opencensus-proto => github.com/census-instrumentation/opencensus-proto v0.1.0
32-
github.com/golang/protobuf => github.com/golang/protobuf v1.2.0
33-
go.opencensus.io => go.opencensus.io v0.21.0
32+
cloud.google.com/go => cloud.google.com/go v0.34.0
33+
git.apache.org/thrift.git => github.com/apache/thrift v0.12.0
34+
github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.4.2+incompatible
3435
k8s.io/api => k8s.io/api v0.0.0-20190313235455-40a48860b5ab
3536
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.0.0-20190315093550-53c4693659ed
3637
k8s.io/apimachinery => github.com/kmodules/apimachinery v0.0.0-20190508045248-a52a97a7a2bf
37-
k8s.io/apiserver => github.com/kmodules/apiserver v0.0.0-20190508082252-8397d761d4b5
38+
k8s.io/apiserver => github.com/kmodules/apiserver v0.0.0-20190811223248-5a95b2df4348
3839
k8s.io/cli-runtime => k8s.io/cli-runtime v0.0.0-20190314001948-2899ed30580f
3940
k8s.io/cloud-provider => k8s.io/cloud-provider v0.0.0-20190314002645-c892ea32361a
4041
k8s.io/component-base => k8s.io/component-base v0.0.0-20190314000054-4a91899592f4
4142
k8s.io/klog => k8s.io/klog v0.3.0
4243
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.0.0-20190314000639-da8327669ac5
4344
k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20190228160746-b3a7cee44a30
44-
k8s.io/kubernetes => k8s.io/kubernetes v1.14.0
4545
k8s.io/metrics => k8s.io/metrics v0.0.0-20190314001731-1bd6a4002213
4646
k8s.io/utils => k8s.io/utils v0.0.0-20190221042446-c2654d5206da
47+
sigs.k8s.io/structured-merge-diff => sigs.k8s.io/structured-merge-diff v0.0.0-20190302045857-e85c7b244fd2
4748
)

0 commit comments

Comments
 (0)