4c24fdb879
* remove(server-lite): delete server-lite module and all references Removes the server-lite Gradle subproject, its source code, build scripts, and all CI/CD references. The server module with ui-next is the canonical distribution going forward. * fix(test): de-flake NestedForkJoinSubWorkflowSpec retry assertions After retry(), the parent workflow is pushed onto the decider queue and the background sweeper (sweeperThreadCount=1) can re-open CANCELED JOIN tasks to IN_PROGRESS before the post-retry snapshot is read. Relax the two pre-sweep JOIN assertions to accept either CANCELED (not yet swept) or IN_PROGRESS (already re-opened), matching the fix applied to HierarchicalForkJoinSubworkflowRetrySpec in #1148 and RerunSpec in #1206. * Revert "fix(test): de-flake NestedForkJoinSubWorkflowSpec retry assertions" This reverts commit 9a2bfad711c267cc845ac7e940605d119b5af638.
17 lines
456 B
Bash
Executable File
17 lines
456 B
Bash
Executable File
#!/bin/sh
|
|
# Build ui-next and copy assets into the server resource directories.
|
|
# This is the ui-next equivalent of build_ui.sh — the original build_ui.sh
|
|
# (which builds ui/ with yarn) is left unchanged.
|
|
set -e
|
|
|
|
cd ui-next
|
|
pwd
|
|
pnpm install
|
|
pnpm build
|
|
echo "Done building ui-next, copying dist to server"
|
|
cd ..
|
|
pwd
|
|
mkdir -p server/src/main/resources/static
|
|
rm -rf server/src/main/resources/static/*
|
|
cp -r ui-next/dist/. server/src/main/resources/static/
|