Changed binary name

This commit is contained in:
Joe Bellus 2022-10-16 15:36:42 -04:00
parent 98a9b2a821
commit b5bfd75a99
2 changed files with 8 additions and 3 deletions

View File

@ -7,7 +7,8 @@ steps:
image: rust:latest
commands:
- apt-get update
- apt-get -y install libgtk-3-dev libxcb-shape0-dev libxcb-xfixes0-dev
- apt-get -y install libgtk-3-dev libxcb-shape0-dev libxcb-x
fixes0-dev
- rustup component add clippy
- cargo clippy
- cargo test --all
@ -18,7 +19,7 @@ steps:
- apt-get update
- apt-get -y install libgtk-3-dev libxcb-shape0-dev libxcb-xfixes0-dev
- cargo build --release
- tar cvzf abacus-linux-amd64.tar.gz -C target/release conductor
- tar cvzf abacus-linux-amd64.tar.gz -C target/release abacus
- cargo install cargo-deb
- cargo deb -p abacus-ui -o target/release/abacus_amd64.deb
- wget https://dl.min.io/client/mc/release/linux-amd64/mc
@ -51,7 +52,7 @@ steps:
- rustup default stable
- mc alias set fivesigma https://objects.5sigma.io $MINIOID $MINIOSECRET
- cargo build --release --target=x86_64-pc-windows-msvc
- mc cp target\x86_64-pc-windows-msvc\release\abacus-ui.exe fivesigma/public/abacus/abacus.exe
- mc cp target\x86_64-pc-windows-msvc\release\abacus.exe fivesigma/public/abacus/abacus.exe
# when:
# event:
# - promote

View File

@ -3,6 +3,10 @@ name = "abacus-ui"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "abacus"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]