Skip to content

Commit

Permalink
Bump sdk to 0.8.0 (#242)
Browse files Browse the repository at this point in the history
Co-authored-by: Leigh McCulloch <[email protected]>
  • Loading branch information
sisuresh and leighmcculloch authored May 17, 2023
1 parent b5fab46 commit 30de690
Show file tree
Hide file tree
Showing 57 changed files with 2,203 additions and 3,590 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ all: test

build:
@for dir in $(SUBDIRS) ; do \
$(MAKE) -C $$dir build || break; \
$(MAKE) -C $$dir build || exit 1; \
done

test: build
@for dir in $(SUBDIRS) ; do \
$(MAKE) -C $$dir test || break; \
$(MAKE) -C $$dir test || exit 1; \
done

fmt:
@for dir in $(SUBDIRS) ; do \
$(MAKE) -C $$dir fmt || break; \
$(MAKE) -C $$dir fmt || exit 1; \
done

clean:
@for dir in $(SUBDIRS) ; do \
$(MAKE) -C $$dir clean || break; \
$(MAKE) -C $$dir clean || exit 1; \
done
Loading

0 comments on commit 30de690

Please sign in to comment.