mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Revert "Cache make build-extensions (#1407)"
This reverts commit 5e5bac3264.
Signed-off-by: Panu Horsmalahti <phorsmalahti@mirantis.com>
This commit is contained in:
parent
8fc49d3bbf
commit
430ccd68ac
@ -36,11 +36,11 @@ jobs:
|
|||||||
yarn
|
yarn
|
||||||
path: $(YARN_CACHE_FOLDER)
|
path: $(YARN_CACHE_FOLDER)
|
||||||
displayName: Cache Yarn packages
|
displayName: Cache Yarn packages
|
||||||
- script: make node_modules
|
- script: make install-deps
|
||||||
displayName: Install dependencies
|
displayName: Install dependencies
|
||||||
- script: make build-npm
|
- script: make build-npm
|
||||||
displayName: Generate npm package
|
displayName: Generate npm package
|
||||||
- script: make -j2 build-extensions
|
- script: make build-extensions
|
||||||
displayName: Build bundled extensions
|
displayName: Build bundled extensions
|
||||||
- script: make integration-win
|
- script: make integration-win
|
||||||
displayName: Run integration tests
|
displayName: Run integration tests
|
||||||
@ -76,11 +76,11 @@ jobs:
|
|||||||
yarn
|
yarn
|
||||||
path: $(YARN_CACHE_FOLDER)
|
path: $(YARN_CACHE_FOLDER)
|
||||||
displayName: Cache Yarn packages
|
displayName: Cache Yarn packages
|
||||||
- script: make node_modules
|
- script: make install-deps
|
||||||
displayName: Install dependencies
|
displayName: Install dependencies
|
||||||
- script: make build-npm
|
- script: make build-npm
|
||||||
displayName: Generate npm package
|
displayName: Generate npm package
|
||||||
- script: make -j2 build-extensions
|
- script: make build-extensions
|
||||||
displayName: Build bundled extensions
|
displayName: Build bundled extensions
|
||||||
- script: make test
|
- script: make test
|
||||||
displayName: Run tests
|
displayName: Run tests
|
||||||
@ -122,13 +122,13 @@ jobs:
|
|||||||
yarn
|
yarn
|
||||||
path: $(YARN_CACHE_FOLDER)
|
path: $(YARN_CACHE_FOLDER)
|
||||||
displayName: Cache Yarn packages
|
displayName: Cache Yarn packages
|
||||||
- script: make node_modules
|
- script: make install-deps
|
||||||
displayName: Install dependencies
|
displayName: Install dependencies
|
||||||
- script: make lint
|
- script: make lint
|
||||||
displayName: Lint
|
displayName: Lint
|
||||||
- script: make build-npm
|
- script: make build-npm
|
||||||
displayName: Generate npm package
|
displayName: Generate npm package
|
||||||
- script: make -j2 build-extensions
|
- script: make build-extensions
|
||||||
displayName: Build bundled extensions
|
displayName: Build bundled extensions
|
||||||
- script: make test
|
- script: make test
|
||||||
displayName: Run tests
|
displayName: Run tests
|
||||||
@ -164,4 +164,4 @@ jobs:
|
|||||||
displayName: Publish npm package
|
displayName: Publish npm package
|
||||||
condition: "and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))"
|
condition: "and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))"
|
||||||
env:
|
env:
|
||||||
NPM_TOKEN: $(NPM_TOKEN)
|
NPM_TOKEN: $(NPM_TOKEN)
|
||||||
44
Makefile
44
Makefile
@ -1,7 +1,4 @@
|
|||||||
EXTENSIONS_DIR = ./extensions
|
EXTENSIONS_DIR = ./extensions
|
||||||
extensions = $(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), ${dir})
|
|
||||||
extension_node_modules = $(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), ${dir}/node_modules)
|
|
||||||
extension_dists = $(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), ${dir}/dist)
|
|
||||||
|
|
||||||
ifeq ($(OS),Windows_NT)
|
ifeq ($(OS),Windows_NT)
|
||||||
DETECTED_OS := Windows
|
DETECTED_OS := Windows
|
||||||
@ -9,23 +6,29 @@ else
|
|||||||
DETECTED_OS := $(shell uname)
|
DETECTED_OS := $(shell uname)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
binaries/client:
|
.PHONY: init
|
||||||
|
init: install-deps download-bins compile-dev
|
||||||
|
echo "Init done"
|
||||||
|
|
||||||
|
.PHONY: download-bins
|
||||||
|
download-bins:
|
||||||
yarn download-bins
|
yarn download-bins
|
||||||
|
|
||||||
node_modules:
|
.PHONY: install-deps
|
||||||
|
install-deps:
|
||||||
yarn install --frozen-lockfile --verbose
|
yarn install --frozen-lockfile --verbose
|
||||||
yarn check --verify-tree --integrity
|
yarn check --verify-tree --integrity
|
||||||
|
|
||||||
static/build/LensDev.html:
|
|
||||||
yarn compile:renderer
|
|
||||||
|
|
||||||
.PHONY: compile-dev
|
.PHONY: compile-dev
|
||||||
compile-dev:
|
compile-dev:
|
||||||
yarn compile:main --cache
|
yarn compile:main --cache
|
||||||
yarn compile:renderer --cache
|
yarn compile:renderer --cache
|
||||||
|
|
||||||
.PHONY: dev
|
.PHONY: dev
|
||||||
dev: node_modules binaries/client build-extensions static/build/LensDev.html
|
dev:
|
||||||
|
ifeq ("$(wildcard static/build/main.js)","")
|
||||||
|
make init
|
||||||
|
endif
|
||||||
yarn dev
|
yarn dev
|
||||||
|
|
||||||
.PHONY: lint
|
.PHONY: lint
|
||||||
@ -33,7 +36,7 @@ lint:
|
|||||||
yarn lint
|
yarn lint
|
||||||
|
|
||||||
.PHONY: test
|
.PHONY: test
|
||||||
test: binaries/client
|
test: download-bins
|
||||||
yarn test
|
yarn test
|
||||||
|
|
||||||
.PHONY: integration-linux
|
.PHONY: integration-linux
|
||||||
@ -56,25 +59,20 @@ test-app:
|
|||||||
yarn test
|
yarn test
|
||||||
|
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
build: node_modules binaries/client build-extensions
|
build: install-deps download-bins build-extensions
|
||||||
ifeq "$(DETECTED_OS)" "Windows"
|
ifeq "$(DETECTED_OS)" "Windows"
|
||||||
yarn dist:win
|
yarn dist:win
|
||||||
else
|
else
|
||||||
yarn dist
|
yarn dist
|
||||||
endif
|
endif
|
||||||
|
|
||||||
$(extension_node_modules):
|
|
||||||
cd $(@:/node_modules=) && npm install --no-audit --no-fund
|
|
||||||
|
|
||||||
$(extension_dists): src/extensions/npm/extensions/dist
|
|
||||||
cd $(@:/dist=) && npm run build
|
|
||||||
|
|
||||||
.PHONY: build-extensions
|
.PHONY: build-extensions
|
||||||
build-extensions: $(extension_node_modules) $(extension_dists)
|
build-extensions:
|
||||||
|
$(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), (cd $(dir) && npm install && npm run build || exit $?);)
|
||||||
|
|
||||||
.PHONY: test-extensions
|
.PHONY: test-extensions
|
||||||
test-extensions: $(extension_node_modules)
|
test-extensions:
|
||||||
$(foreach dir, $(extensions), (cd $(dir) && npm run test || exit $?);)
|
$(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), (cd $(dir) && npm install --dev && npm run test || exit $?);)
|
||||||
|
|
||||||
.PHONY: copy-extension-themes
|
.PHONY: copy-extension-themes
|
||||||
copy-extension-themes:
|
copy-extension-themes:
|
||||||
@ -126,13 +124,13 @@ else
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean: clean-npm clean-extensions
|
clean: clean-npm
|
||||||
ifeq "$(DETECTED_OS)" "Windows"
|
ifeq "$(DETECTED_OS)" "Windows"
|
||||||
if exist binaries\client del /s /q binaries\client
|
if exist binaries\client del /s /q binaries\client\*.*
|
||||||
if exist dist del /s /q dist\*.*
|
if exist dist del /s /q dist\*.*
|
||||||
if exist static\build del /s /q static\build\*.*
|
if exist static\build del /s /q static\build\*.*
|
||||||
else
|
else
|
||||||
rm -rf binaries/client
|
rm -rf binaries/client/*
|
||||||
rm -rf dist/*
|
rm -rf dist/*
|
||||||
rm -rf static/build/*
|
rm -rf static/build/*
|
||||||
endif
|
endif
|
||||||
|
|||||||
5028
extensions/example-extension/yarn.lock
Normal file
5028
extensions/example-extension/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
5132
extensions/license-menu-item/yarn.lock
Normal file
5132
extensions/license-menu-item/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
5058
extensions/metrics-cluster-feature/yarn.lock
Normal file
5058
extensions/metrics-cluster-feature/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
5058
extensions/node-menu/yarn.lock
Normal file
5058
extensions/node-menu/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
5058
extensions/pod-menu/yarn.lock
Normal file
5058
extensions/pod-menu/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
5319
extensions/support-page/yarn.lock
Normal file
5319
extensions/support-page/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
5171
extensions/telemetry/yarn.lock
Normal file
5171
extensions/telemetry/yarn.lock
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user