rustimate 0.1.0

A planning poker app, mostly developed to learn Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

## Build a release-mode binary for Linux.

set -e
dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
project_dir=${dir}/..
cd $project_dir

TARGET_CC=x86_64-linux-musl-gcc cargo build --release --target x86_64-unknown-linux-musl
unset TARGET_CC

mkdir -p build/linux
cp target/x86_64-unknown-linux-musl/release/rustimate build/linux/rustimate

cp target/x86_64-unknown-linux-musl/release/rustimate ../kyleu.com/bin/apps/rustimate/rustimate

gzip -f build/linux/rustimate --keep