Skip to content

Commit c9c6012

Browse files
authored
CI: fix go examples (#141)
* update * update README
1 parent 5a94d25 commit c9c6012

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/rust.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Rust
1+
name: Test rust runtime
22

33
on:
44
push:

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# 📦 Wasm-bpf: Wasm library and toolchain for eBPF
44

5+
[![Test Rntime](https://github.com/eunomia-bpf/wasm-bpf/actions/workflows/rust.yml/badge.svg)](https://github.com/eunomia-bpf/wasm-bpf/actions/workflows/rust.yml)
56
[![codecov](https://codecov.io/gh/eunomia-bpf/wasm-bpf/branch/main/graph/badge.svg?token=6TKN4WU99U)](https://codecov.io/gh/eunomia-bpf/wasm-bpf)
67
[![CodeFactor](https://www.codefactor.io/repository/github/eunomia-bpf/wasm-bpf/badge)](https://www.codefactor.io/repository/github/eunomia-bpf/wasm-bpf)
78
[![DeepSource](https://deepsource.io/gh/eunomia-bpf/wasm-bpf.svg/?label=active+issues&show_trend=true&token=rcSI3J1-gpwLIgZWtKZC-N6C)](https://deepsource.io/gh/eunomia-bpf/wasm-bpf/?ref=repository-badge)

examples/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ all: test
55
TEST_TIME := 3
66

77
# test with the files in bpf-loader
8-
TEST_CASES_DIRS=$(shell ls -l . | grep ^d | awk '{print $$9}')
8+
TEST_CASES_DIRS=$(shell ls -l . | grep ^d | grep -v 'go-lsm\|go-execve' | awk '{print $$9}')
99
test: $(TEST_CASES_DIRS)
1010

1111
.PHONY:$(TEST_CASES_DIRS)

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/eunomia-bpf/wasm-bpf
22

3-
go 1.18
3+
go 1.21

0 commit comments

Comments
 (0)