Skip to content

Commit

Permalink
add local test
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Gatto <[email protected]>
  • Loading branch information
outscale-mgo committed Sep 15, 2023
1 parent f41a59a commit e1da028
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions local_tests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
#!/bin/sh

# Copyright (c) Outscale SAS
#
# SPDX-License-Identifier: BSD-3-Clause

export OSC_PASSWORD='ashita wa dochida'
export OSC_LOGIN=joe

export OMI_ID="ami-90067666"

export OSC_SECRET_KEY=0000001111112222223333334444445555555666
export OSC_ACCESS_KEY=11112211111110000000

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-mgo/osc-ricochet-2
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 example-node-create-volumes
make example-node-volumes

0 comments on commit e1da028

Please sign in to comment.