mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-17 10:29:51 -05:00
Bump web-test-middleware in CI Remove fileUpload volumes in CI, bump web to official v5.0.0 Rename web changelog & fix settings acceptance test Add 'Spaces' to settings navBar tests Add new profile link & quota to settings userMenu tests Update expected failures from web v5.0.0 release Bump web commit ID Bump web commit ID
38 lines
911 B
Makefile
38 lines
911 B
Makefile
SHELL := bash
|
|
NAME := web
|
|
|
|
include ../.make/recursion.mk
|
|
|
|
############ tooling ############
|
|
ifneq (, $(shell which go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
|
include ../.bingo/Variables.mk
|
|
endif
|
|
|
|
############ go tooling ############
|
|
include ../.make/go.mk
|
|
|
|
############ release #########
|
|
include ../.make/release.mk
|
|
|
|
############ docs generate ############
|
|
include ../.make/docs.mk
|
|
|
|
.PHONY: docs-generate
|
|
docs-generate: config-docs-generate
|
|
|
|
############ generate ############
|
|
include ../.make/generate.mk
|
|
|
|
.PHONY: ci-go-generate
|
|
ci-go-generate: # CI runs ci-node-generate automatically before this target
|
|
|
|
.PHONY: ci-node-generate
|
|
ci-node-generate: pull-assets
|
|
|
|
WEB_ASSETS_VERSION = v5.0.0
|
|
|
|
.PHONY: pull-assets
|
|
pull-assets:
|
|
@git clean -xfd assets
|
|
@curl -slL -o- https://github.com/owncloud/web/releases/download/$(WEB_ASSETS_VERSION)/web.tar.gz | tar xzf - -C assets/
|