mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 08:08:34 +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.
16 lines
352 B
TOML
16 lines
352 B
TOML
[package]
|
|
name = "enso-build-base"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
anyhow = "1.0.65"
|
|
fn-error-context = "0.2.0"
|
|
futures-util = "0.3.24"
|
|
futures = "0.3.24"
|
|
serde = "1.0.145"
|
|
serde_json = "1.0.85"
|
|
serde_yaml = "0.9.13"
|
|
tracing = "0.1.36"
|