Skip to content

Commit

Permalink
ci: fix build container image
Browse files Browse the repository at this point in the history
  • Loading branch information
Littlefisher619 committed Oct 20, 2023
1 parent 978df0c commit c0fb4d4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 141 deletions.
1 change: 0 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
},
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/eliises/devcontainer-features/bash-profile": {}
}

// Features to add to the dev container. More info: https://containers.dev/features.
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ build: ## build the package
cd tools/cli-rs && cargo build

release: ## build the package
cmake -Bbuild -DBPFTIME_ENABLE_UNIT_TESTING=0 -DCMAKE_BUILD_TYPE:STRING=Release && cmake --build build --config Release --target install
cmake -Bbuild -DBPFTIME_ENABLE_UNIT_TESTING=0 -DCMAKE_BUILD_TYPE:STRING=Release
cmake --build build --config Release --target install
cd tools/cli-rs && cargo build

build-vm: ## build only the core library
make -C vm build
Expand Down
1 change: 0 additions & 1 deletion benchmark/uretprobe/uretprobe.bpf.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>


SEC("uretprobe/benchmark/test:__benchmark_test_function3")
int BPF_URETPROBE(__benchmark_test_function, int ret)
{
Expand Down
138 changes: 0 additions & 138 deletions runtime/bpftime-daemon/Makefile

This file was deleted.

0 comments on commit c0fb4d4

Please sign in to comment.