mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 22:10:15 +03:00
483028dbb0
This PR updates the build script: * fixed issue where program version check was not properly triggering; * improved `git-clean` command to correctly clear Scala artifacts; * added `run.ps1` wrapper to the build script that works better with PowerShell than `run.cmd`; * increased timeouts to work around failures on macOS nightly builds; * replaced depracated GitHub Actions APIs (set-output) with their new equivalents; * workaround for issue with electron builder (python2 lookup) on newer macOS runner images; * GUI and backend dispatches to cloud were completed; * release workflow allows creating RC releases.
7 lines
253 B
Batchfile
7 lines
253 B
Batchfile
@ pushd %~dp0
|
|
@ set TARGET_DIR=%~dp0target\enso-build
|
|
@ set TARGET_EXE=%TARGET_DIR%\buildscript\enso-build-cli.exe
|
|
cargo build --profile buildscript --target-dir "%TARGET_DIR%" --package enso-build-cli && "%TARGET_EXE%" %*
|
|
@ popd
|
|
@ exit /b %ERRORLEVEL%
|