d806fb9126
Tests are using kind, adjacency and bash_unit. A kind cluster is spun up and the previously build container image of Kilo is loaded into it. Adjacency and a curl container is started. From the curl container a http request is send to the adjacency service. The test fails if curl returns an unexpected result. Two test are run. One with `mesh-granularity=full` and `location`. The e2e test is only run for pull request because it is a bit flaky for automatic nightly runs. Signed-off-by: leonnicolas <leonloechner@gmx.de>
154 lines
3.6 KiB
YAML
154 lines
3.6 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.15.7
|
|
- name: Build
|
|
run: make
|
|
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.15.7
|
|
- name: Build kg and kgctl for all Linux Architectures
|
|
run: make all-build
|
|
|
|
darwin:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.15.7
|
|
- name: Build kgctl for Darwin
|
|
run: make OS=darwin
|
|
|
|
windows:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.15.7
|
|
- name: Build kgctl for Windows
|
|
run: make OS=windows
|
|
|
|
unit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.15.7
|
|
- name: Run Unit Tests
|
|
run: make unit
|
|
|
|
e2e:
|
|
if: github.event_name == 'pull_request'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.15.7
|
|
- name: Run e2e Tests
|
|
run: make e2e
|
|
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.15.7
|
|
- name: Lint Code
|
|
run: make lint
|
|
|
|
container:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.15.7
|
|
- name: Enable Experimental Docker CLI
|
|
run: |
|
|
echo $'{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json
|
|
mkdir -p ~/.docker
|
|
echo $'{\n "experimental": "enabled"\n}' | sudo tee ~/.docker/config.json
|
|
sudo service docker restart
|
|
docker version -f '{{.Client.Experimental}}'
|
|
docker version -f '{{.Server.Experimental}}'
|
|
docker buildx version
|
|
- name: Container
|
|
run: make container
|
|
|
|
push:
|
|
if: github.event_name != 'pull_request'
|
|
needs:
|
|
- build
|
|
- linux
|
|
- darwin
|
|
- windows
|
|
- unit
|
|
- lint
|
|
- container
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.15.7
|
|
- name: Enable Experimental Docker CLI
|
|
run: |
|
|
echo $'{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json
|
|
mkdir -p ~/.docker
|
|
echo $'{\n "experimental": "enabled"\n}' | sudo tee ~/.docker/config.json
|
|
sudo service docker restart
|
|
docker version -f '{{.Client.Experimental}}'
|
|
docker version -f '{{.Server.Experimental}}'
|
|
docker buildx version
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@master
|
|
with:
|
|
platforms: all
|
|
- name: Login to DockerHub
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
- name: Build and push
|
|
if: github.event_name != 'pull_request'
|
|
run: make manifest
|
|
- name: Build and push latest
|
|
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
|
|
run: make manifest-latest
|