Skip to content

Commit

Permalink
ci: fix docker image ci (#324)
Browse files Browse the repository at this point in the history
* Try fixing docker image ci

* Try fixing CI
  • Loading branch information
Officeyutong committed Dec 22, 2023
1 parent a4b30f4 commit 322d11c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/assets/simple.h
@@ -0,0 +1,5 @@
#ifndef _SIMPLE_H
#define _SIMPLE_H


#endif
1 change: 1 addition & 0 deletions .github/workflows/ecc-image-x86_64.yml
Expand Up @@ -55,6 +55,7 @@ jobs:
mkdir docker-test
cd docker-test
cp ../.github/assets/simple.bpf.c .
cp ../.github/assets/simple.h .
docker run -v `pwd`/:/src/ ghcr.io/${{ env.REPO_OWNER }}/ecc-x86_64:latest
if [[ ! -f "./package.json" ]]
then
Expand Down
2 changes: 1 addition & 1 deletion compiler/Makefile
Expand Up @@ -73,7 +73,7 @@ XDG_DATA_HOME ?= ${HOME}/.local/share
EUNOMIA_HOME := $(XDG_DATA_HOME)/eunomia

install:
rm -rf $(EUNOMIA_HOME) && mkdir -p $(EUNOMIA_HOME) && cp -r workspace $(EUNOMIA_HOME)
rm -rf $(EUNOMIA_HOME) && mkdir -p $(EUNOMIA_HOME) && cp -r workspace/* $(EUNOMIA_HOME)
.PHONY: test
test:
cargo install clippy-sarif sarif-fmt grcov
Expand Down

0 comments on commit 322d11c

Please sign in to comment.