mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
don't make the logs folders on CI
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
5c840a8af5
commit
c43cfb5c48
12
Makefile
12
Makefile
@ -53,24 +53,30 @@ integration-linux: binaries/client build-extension-types build-extensions
|
|||||||
# rm -rf ${HOME}/.config/Lens
|
# rm -rf ${HOME}/.config/Lens
|
||||||
# endif
|
# endif
|
||||||
yarn build:linux
|
yarn build:linux
|
||||||
|
ifndef CI
|
||||||
mkdir -p logs
|
mkdir -p logs
|
||||||
rm -r ./logs/*
|
rm -r logs
|
||||||
|
endif
|
||||||
yarn integration
|
yarn integration
|
||||||
|
|
||||||
.PHONY: integration-mac
|
.PHONY: integration-mac
|
||||||
integration-mac: binaries/client build-extension-types build-extensions
|
integration-mac: binaries/client build-extension-types build-extensions
|
||||||
# rm ${HOME}/Library/Application\ Support/Lens
|
# rm ${HOME}/Library/Application\ Support/Lens
|
||||||
yarn build:mac
|
yarn build:mac
|
||||||
|
ifndef CI
|
||||||
mkdir -p logs
|
mkdir -p logs
|
||||||
rm -r ./logs/*
|
rm -r logs
|
||||||
|
endif
|
||||||
yarn integration
|
yarn integration
|
||||||
|
|
||||||
.PHONY: integration-win
|
.PHONY: integration-win
|
||||||
integration-win: binaries/client build-extension-types build-extensions
|
integration-win: binaries/client build-extension-types build-extensions
|
||||||
# rm %APPDATA%/Lens
|
# rm %APPDATA%/Lens
|
||||||
yarn build:win
|
yarn build:win
|
||||||
|
ifndef CI
|
||||||
mkdir -p logs
|
mkdir -p logs
|
||||||
rm -r ./logs/*
|
rm -r logs
|
||||||
|
endif
|
||||||
yarn integration
|
yarn integration
|
||||||
|
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user