debug metrics collection #203
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [push] | |
jobs: | |
staticcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.22" | |
- uses: dominikh/[email protected] | |
with: | |
install-go: false | |
version: "2023.1.6" | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.22" | |
- name: test | |
run: sudo --preserve-env make test | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
install: true | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.22" | |
- name: Install protoc-gen-go | |
run: | | |
go install google.golang.org/protobuf/cmd/[email protected] | |
go install github.com/containerd/ttrpc/cmd/[email protected] | |
- uses: awalsh128/cache-apt-pkgs-action@v1 | |
with: | |
packages: protobuf-compiler libprotobuf-dev | |
version: 1.0 | |
- name: build ebpf image | |
run: make build-ebpf | |
- name: generate ttrpc and ebpf | |
run: make generate | |
- name: check for diff | |
run: git diff --exit-code | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
install: true | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.22" | |
- name: e2e | |
run: make test-e2e |