Files
Viren Baraiya 4c24fdb879 remove(server-lite): delete server-lite module and all references (#1211)
* 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.
2026-06-30 00:10:57 -07:00

11 lines
282 B
Bash
Executable File

cd ui
pwd
export REACT_APP_ENABLE_ERRORS_INSPECTOR=true
export REACT_APP_MONACO_EDITOR_USING_CDN=true
yarn install
yarn build
echo "Done building UI, copying the UI files to server"
cd ..
pwd
rm -rf server/src/main/resources/static/*
cp -r ui/build/ server/src/main/resources/static