mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-02-14 18:29:53 +00:00
154 lines
4.2 KiB
YAML
154 lines
4.2 KiB
YAML
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
push:
|
|
branches:
|
|
- "master"
|
|
tags:
|
|
- "v*.*.*"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-18.04
|
|
container:
|
|
image: replicated/troubleshoot-builder:18.04
|
|
credentials:
|
|
username: repldeploy2
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
steps:
|
|
- uses: actions/setup-go@v1
|
|
with:
|
|
go-version: "1.14"
|
|
|
|
- name: setup env
|
|
run: |
|
|
echo "::set-env name=GOPATH::$(go env GOPATH)"
|
|
echo "::add-path::$(go env GOPATH)/bin"
|
|
shell: bash
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: make
|
|
|
|
compile-preflight:
|
|
runs-on: ubuntu-18.04
|
|
container:
|
|
image: replicated/troubleshoot-builder:18.04
|
|
credentials:
|
|
username: repldeploy2
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
needs: build
|
|
steps:
|
|
- uses: actions/setup-go@v1
|
|
with:
|
|
go-version: '1.14'
|
|
- name: setup env
|
|
run: |
|
|
echo "::set-env name=GOPATH::$(go env GOPATH)"
|
|
echo "::add-path::$(go env GOPATH)/bin"
|
|
shell: bash
|
|
- uses: actions/checkout@master
|
|
- run: make preflight
|
|
- uses: actions/upload-artifact@v1
|
|
with:
|
|
name: preflight
|
|
path: bin/preflight
|
|
|
|
validate-preflight:
|
|
runs-on: ubuntu-18.04
|
|
needs: compile-preflight
|
|
steps:
|
|
- name: Download preflight binary
|
|
uses: actions/download-artifact@v1
|
|
with:
|
|
name: preflight
|
|
path: bin/
|
|
- uses: engineerd/setup-kind@v0.4.0
|
|
- run: chmod +x bin/preflight
|
|
- run: ./bin/preflight --interactive=false --format=json https://preflight.replicated.com
|
|
|
|
compile-supportbundle:
|
|
runs-on: ubuntu-18.04
|
|
container:
|
|
image: replicated/troubleshoot-builder:18.04
|
|
credentials:
|
|
username: repldeploy2
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
needs: build
|
|
steps:
|
|
- uses: actions/setup-go@v1
|
|
with:
|
|
go-version: '1.14'
|
|
- name: setup env
|
|
run: |
|
|
echo "::set-env name=GOPATH::$(go env GOPATH)"
|
|
echo "::add-path::$(go env GOPATH)/bin"
|
|
shell: bash
|
|
- uses: actions/checkout@master
|
|
- run: make support-bundle
|
|
- uses: actions/upload-artifact@v1
|
|
with:
|
|
name: support-bundle
|
|
path: bin/support-bundle
|
|
|
|
validate-supportbundle:
|
|
runs-on: ubuntu-18.04
|
|
needs: compile-supportbundle
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Download support-bundle binary
|
|
uses: actions/download-artifact@v1
|
|
with:
|
|
name: support-bundle
|
|
path: bin/
|
|
- uses: engineerd/setup-kind@v0.4.0
|
|
- run: chmod +x bin/support-bundle
|
|
- run: ./bin/support-bundle ./examples/support-bundle/sample-collectors.yaml
|
|
- run: ./bin/support-bundle ./examples/support-bundle/sample-supportbundle.yaml
|
|
- run: ./bin/support-bundle https://kots.io
|
|
|
|
goreleaser:
|
|
runs-on: ubuntu-18.04
|
|
container:
|
|
image: replicated/troubleshoot-builder:18.04
|
|
credentials:
|
|
username: repldeploy2
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
needs:
|
|
- validate-preflight
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- uses: azure/docker-login@v1
|
|
with:
|
|
username: repldeploy2
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
|
|
- name: Unshallow
|
|
run: git fetch --prune --unshallow
|
|
|
|
- uses: actions/setup-go@v1
|
|
with:
|
|
go-version: "1.14"
|
|
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@v2
|
|
with:
|
|
version: latest
|
|
args: release --rm-dist --config deploy/.goreleaser.yaml
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
- name: Update new preflight version in krew-index
|
|
uses: rajatjindal/krew-release-bot@v0.0.38
|
|
with:
|
|
krew_template_file: deploy/krew/preflight.yaml
|
|
- name: Update new support-bundle version in krew-index
|
|
uses: rajatjindal/krew-release-bot@v0.0.38
|
|
with:
|
|
krew_template_file: deploy/krew/support-bundle.yaml
|