-
Notifications
You must be signed in to change notification settings - Fork 9
/
local_tests.sh
executable file
·44 lines (31 loc) · 1020 Bytes
/
local_tests.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
#!/bin/sh
# Copyright (c) Outscale SAS
#
# SPDX-License-Identifier: BSD-3-Clause
export OSC_PASSWORD='ashita wa dochida'
export OSC_LOGIN=joe
export OSC_TEST_SECRET_KEY=0000001111112222223333334444445555555666
export OSC_TEST_ACCESS_KEY=11112211111110000000
export OMI_ID="ami-90067666"
export OSC_SECRET_KEY=0000001111112222223333334444445555555666
export OSC_ACCESS_KEY=11112211111110000000
export OSC_ENDPOINT_ICU="http://127.0.0.1:3000/icu/"
export OSC_ENDPOINT_FCU="http://127.0.0.1:3000"
export OSC_ENDPOINT_API="http://127.0.0.1:3000/api/v1"
export OSC_ENDPOINT_API_NOPROTO="127.0.0.1:3000/api/v1"
export OSC_REGION="vp-ware-3"
export OSC_PROTOCOL="http"
export OSC_USING_RICOCHET="oui"
if [ "$#" -eq 0 ]; then
if [ ! -d "osc-ricochet-2" ]; then
git clone https://github.com/outscale/osc-ricochet-2.git
fi
cd osc-ricochet-2
pkill ricochet
cargo build --profile 'sdks'
cargo run --profile 'sdks' -- ./ricochet.json &> /dev/null &
cd ..
sleep 5
fi
set -e
make go-test