2021-06-15 17:17:46 +00:00
|
|
|
name: "time-to-k8s benchmark"
|
|
|
|
on:
|
2021-06-15 17:27:02 +00:00
|
|
|
release:
|
|
|
|
types: [released]
|
2021-06-23 16:38:59 +00:00
|
|
|
env:
|
|
|
|
GOPROXY: https://proxy.golang.org
|
|
|
|
GO_VERSION: 1.16.4
|
2021-06-15 17:17:46 +00:00
|
|
|
jobs:
|
|
|
|
benchmark:
|
2021-06-28 22:25:58 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2021-06-15 17:17:46 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Checkout submodules
|
|
|
|
run: git submodule update --init
|
|
|
|
- uses: actions/setup-go@v2
|
|
|
|
with:
|
2021-06-23 16:38:59 +00:00
|
|
|
go-version: ${{env.GO_VERSION}}
|
2021-06-15 17:17:46 +00:00
|
|
|
stable: true
|
|
|
|
- name: Benchmark
|
|
|
|
run: |
|
|
|
|
./hack/benchmark/time-to-k8s/time-to-k8s.sh ${{ secrets.MINIKUBE_BOT_PAT }}
|