2019-12-17 06:17:25 +01:00
|
|
|
name: smoke
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
2020-03-02 22:21:19 +01:00
|
|
|
paths:
|
|
|
|
- '.github/workflows/smoke**'
|
|
|
|
- '**Makefile'
|
|
|
|
- '**.go'
|
|
|
|
- '**.proto'
|
|
|
|
- 'go.mod'
|
|
|
|
- 'go.sum'
|
2019-12-17 06:17:25 +01:00
|
|
|
jobs:
|
|
|
|
|
|
|
|
smoke:
|
2020-06-26 19:46:51 +02:00
|
|
|
name: Run multi node smoke test
|
2019-12-17 06:17:25 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
2021-02-17 19:11:57 +01:00
|
|
|
- name: Set up Go 1.16
|
2019-12-17 06:17:25 +01:00
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
2021-02-17 19:11:57 +01:00
|
|
|
go-version: 1.16
|
2019-12-17 06:17:25 +01:00
|
|
|
id: go
|
|
|
|
|
|
|
|
- name: Check out code into the Go module directory
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
2020-03-02 22:21:19 +01:00
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
2021-02-17 19:11:57 +01:00
|
|
|
key: ${{ runner.os }}-go1.16-${{ hashFiles('**/go.sum') }}
|
2020-03-02 22:21:19 +01:00
|
|
|
restore-keys: |
|
2021-02-17 19:11:57 +01:00
|
|
|
${{ runner.os }}-go1.16-
|
2020-03-02 22:21:19 +01:00
|
|
|
|
2019-12-17 06:17:25 +01:00
|
|
|
- name: build
|
2021-03-01 17:15:15 +01:00
|
|
|
run: make bin-docker
|
2019-12-17 06:17:25 +01:00
|
|
|
|
|
|
|
- name: setup docker image
|
|
|
|
working-directory: ./.github/workflows/smoke
|
|
|
|
run: ./build.sh
|
|
|
|
|
|
|
|
- name: run smoke
|
|
|
|
working-directory: ./.github/workflows/smoke
|
|
|
|
run: ./smoke.sh
|
|
|
|
|
|
|
|
timeout-minutes: 10
|