Skip to content

Commit

Permalink
Merge pull request #259 from microsoft/sumsharma/pr_fix_static_checks
Browse files Browse the repository at this point in the history
ci: Fix make static-checks
  • Loading branch information
Sumynwa authored Dec 7, 2024
2 parents b30ded8 + 81f0963 commit 5dd3198
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/overlay/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
all:
cargo build --release

static-checks-build:
exit 0

clean:
cargo clean
3 changes: 3 additions & 0 deletions src/tardev-snapshotter/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
all:
RUSTC_BOOTSTRAP=1 cargo build --release

static-checks-build:
exit 0

clean:
cargo clean
3 changes: 3 additions & 0 deletions src/tarfs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ install:
$(MAKE) -C $(KDIR) M=$$PWD INSTALL_MOD_PATH=$(INSTALL_MOD_PATH) modules_install
depmod -a -b $(INSTALL_MOD_PATH) $(KVER)

static-checks-build:
exit 0

clean:
rm -rf _install
$(MAKE) -C $(KDIR) M=$$PWD clean
Expand Down
3 changes: 3 additions & 0 deletions src/utarfs/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
all:
cargo build --release

static-checks-build:
exit 0

clean:
cargo clean

0 comments on commit 5dd3198

Please sign in to comment.