Skip to content

Commit

Permalink
test: list dirs for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrox committed Jun 2, 2024
1 parent 3eb988c commit 9ab2775
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: sudo --preserve-env make test

build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3

Expand All @@ -46,6 +46,11 @@ jobs:
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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ ttrpc:
cd api/shim/v1; protoc --go_out=. --go_opt=paths=source_relative \
--ttrpc_out=. --plugin=protoc-gen-ttrpc=`which protoc-gen-go-ttrpc` \
--ttrpc_opt=paths=source_relative *.proto -I. \
-I ${GOPATH}/pkg/mod/github.com/prometheus/[email protected]
-I $(shell go env GOMODCACHE)/github.com/prometheus/[email protected]

# to improve reproducibility of the bpf builds, we dump the vmlinux.h and
# store it compressed in git instead of dumping it during the build.
Expand Down
2 changes: 1 addition & 1 deletion api/shim/v1/shim.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9ab2775

Please sign in to comment.