mirror of
https://github.com/kopia/kopia.git
synced 2026-09-13 13:48:32 -04:00
* build(deps): bump the kopia-ui-npm-dependencies group Bumps the kopia-ui-npm-dependencies group in /app with 3 updates: [uuid](https://github.com/uuidjs/uuid), [concurrently](https://github.com/open-cli-tools/concurrently) and [electron](https://github.com/electron/electron). Updates `uuid` from 14.0.1 to 14.0.2 - [Release notes](https://github.com/uuidjs/uuid/releases) - [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md) - [Commits](https://github.com/uuidjs/uuid/compare/v14.0.1...v14.0.2) Updates `concurrently` from 10.0.4 to 10.0.5 - [Release notes](https://github.com/open-cli-tools/concurrently/releases) - [Commits](https://github.com/open-cli-tools/concurrently/compare/v10.0.4...v10.0.5) Updates `electron` from 43.3.0 to 44.0.0 - [Release notes](https://github.com/electron/electron/releases) - [Commits](https://github.com/electron/electron/compare/v43.3.0...v44.0.0) --- updated-dependencies: - dependency-name: uuid dependency-version: 14.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kopia-ui-npm-dependencies - dependency-name: concurrently dependency-version: 10.0.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: kopia-ui-npm-dependencies - dependency-name: electron dependency-version: 44.0.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: kopia-ui-npm-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * fix(ci): retain Electron armv7 build support Co-authored-by: julio-lopez <1953782+julio-lopez@users.noreply.github.com> * build: drop Linux ARMv7 support Co-authored-by: julio-lopez <1953782+julio-lopez@users.noreply.github.com> * revert: allow installing node for armv7l --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: julio-lopez <1953782+julio-lopez@users.noreply.github.com>
95 lines
2.2 KiB
Makefile
95 lines
2.2 KiB
Makefile
SHELL:=/bin/bash
|
||
|
||
include ../tools/tools.mk
|
||
|
||
deps: node_modules/.up-to-date
|
||
|
||
node_modules/.up-to-date: $(npm) package.json package-lock.json
|
||
$(retry) $(npm) $(npm_flags) $(npm_install_or_ci) --no-audit
|
||
$(npm) $(npm_flags) audit --omit=dev
|
||
echo updated > node_modules/.up-to-date
|
||
|
||
electron_builder_flags+=-c.extraMetadata.version=$(KOPIA_VERSION:v%=%)
|
||
|
||
electron_publish_flag:=never
|
||
|
||
ifeq ($(IS_PULL_REQUEST),false)
|
||
|
||
electron_builder_flags+=-c.publish.owner=$(REPO_OWNER)
|
||
|
||
ifeq ($(CI_TAG),)
|
||
ifneq ($(NON_TAG_RELEASE_REPO),)
|
||
electron_builder_flags+=-c.publish.repo=$(NON_TAG_RELEASE_REPO)
|
||
endif
|
||
endif
|
||
|
||
else
|
||
|
||
# Running as part of a pull_request event on GH, or outside a GH workflow, then
|
||
# don't build installer and don't publish
|
||
ifneq ($(FORCE_KOPIA_UI_SIGN),)
|
||
electron_builder_flags+=--dir
|
||
|
||
else
|
||
|
||
# unset CSC_LINK completely, otherwise electron builder hangs attempting to
|
||
# notarize.
|
||
unexport CSC_LINK
|
||
unexport CSC_KEY_PASSWORD
|
||
unexport KOPIA_UI_NOTARIZE
|
||
|
||
endif
|
||
endif
|
||
|
||
# empty CSC_LINK, unset completely since empty value confuses electron builder.
|
||
ifeq ($(CSC_LINK),)
|
||
|
||
unexport CSC_LINK
|
||
unexport CSC_KEY_PASSWORD
|
||
|
||
endif
|
||
|
||
ifeq ($(GOOS),windows)
|
||
|
||
# disable Kopia UI code signing on Windows.
|
||
unexport CSC_LINK
|
||
unexport CSC_KEY_PASSWORD
|
||
|
||
endif
|
||
|
||
# build x86_64 and apple silicon binaries
|
||
ifeq ($(GOOS),darwin)
|
||
ifeq ($(KOPIA_UI_CURRENT_ARCH_ONLY),)
|
||
electron_builder_flags+=--x64 --arm64
|
||
endif
|
||
endif
|
||
|
||
# build x86_64 and arm64 binaries
|
||
ifeq ($(GOOS),linux)
|
||
ifeq ($(KOPIA_UI_CURRENT_ARCH_ONLY),)
|
||
electron_builder_flags+=--x64 --arm64
|
||
endif
|
||
endif
|
||
|
||
dev: node_modules/.up-to-date
|
||
$(npm) $(npm_flags) run dev
|
||
|
||
run:
|
||
$(npm) $(npm_flags) run start-electron-prebuilt
|
||
|
||
e2e-test:
|
||
$(npm) $(npm_flags) run e2e
|
||
|
||
build-electron: ../dist/kopia-ui/.up-to-date
|
||
|
||
# rebuild packages if HTML, embedded EXE or build config changed.
|
||
../dist/kopia-ui/.up-to-date: package.json ../dist/kopia_*/kopia* node_modules/.up-to-date public/* resources/*/*/*
|
||
$(retry) $(npm) $(npm_flags) run build-electron -- $(electron_builder_flags) -p $(electron_publish_flag)
|
||
echo updated > ../dist/kopia-ui/.up-to-date
|
||
|
||
check-prettier: node_modules/.up-to-date
|
||
$(npm) run prettier:check
|
||
|
||
prettier: node_modules/.up-to-date
|
||
$(npm) run prettier
|