-
Notifications
You must be signed in to change notification settings - Fork 7
/
run_on_wasabi.sh
executable file
·45 lines (39 loc) · 1.25 KB
/
run_on_wasabi.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash -xe
HOME_PATH=$PWD
TARGET_PATH=$PWD"/build"
OS_PATH=$TARGET_PATH"/wasabi"
# アプリケーションの名前がsabaとは異なるとき、次の行を変更する
APP_NAME="saba"
MAKEFILE_PATH=$HOME_PATH"/Makefile"
# buildディレクトリを作成する
if [ -d $TARGET_PATH ]
then
echo $TARGET_PATH" exists"
else
echo $TARGET_PATH" doesn't exist"
mkdir $TARGET_PATH
fi
# WasabiOSをダウンロードする(https://github.com/hikalium/wasabi)
# もしスクリプトが失敗する場合は、`rm -rf build/wasabi`などで
# ダウンロードしたOSを削除する必要がある
if [ -d $OS_PATH ]
then
echo $OS_PATH" exists"
echo "pulling new changes..."
cd $OS_PATH
git pull origin for_saba
else
echo $OS_PATH" doesn't exist"
echo "cloning wasabi project..."
cd $TARGET_PATH
git clone --branch for_saba [email protected]:hikalium/wasabi.git
fi
# アプリケーションのトップディレクトリに移動する
cd $HOME_PATH
# Makefileをダウンロードする
if [ ! -f $MAKEFILE_PATH ]; then
echo "downloading Makefile..."
wget https://raw.githubusercontent.com/hikalium/wasabi/for_saba/external_app_template/Makefile
fi
make build
$OS_PATH/scripts/run_with_app.sh ./target/x86_64-unknown-none/release/$APP_NAME