fix(ci): fix cross compiliation

This commit is contained in:
Brooks J Rady 2021-04-26 23:33:53 +01:00
parent 1dc49b5e58
commit afefa82f47

View file

@ -95,10 +95,14 @@ end
# CI Releasing Zellij # CI Releasing Zellij
[tasks.ci-build-release] [tasks.ci-build-release]
workspace = false workspace = false
dependencies = ["build-plugins-release", "wasm-opt-plugins", "build-release"] dependencies = ["setup-cross-compilation", "build-plugins-release", "wasm-opt-plugins"]
command = "cargo" command = "cross"
args = ["build", "--verbose", "--release", "--target", "${CARGO_MAKE_TASK_ARGS}"] args = ["build", "--verbose", "--release", "--target", "${CARGO_MAKE_TASK_ARGS}"]
[tasks.setup-cross-compilation]
command = "cargo"
args = ["install", "cross"]
# Publishing Zellij # Publishing Zellij
[tasks.publish] [tasks.publish]
clear = true clear = true