Skip to content

Commit

Permalink
ci: fix example test error (#322)
Browse files Browse the repository at this point in the history
* fix example

* fix publish docker error

---------

Co-authored-by: victoryang00 <yangyiwei2000@gmail.com>
  • Loading branch information
yunwei37 and victoryang00 committed Dec 2, 2023
1 parent 72359a4 commit e080cad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/example-publlish.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: test examples
run: |
make -C examples/tests test
SKIP_TESTS=profile make -C examples/tests test
- uses: JamesIves/github-pages-deploy-action@v4.4.1
if: ${{ github.event_name == 'push' }}
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) && 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 e080cad

Please sign in to comment.