Skip to content

Commit 135393a

Browse files
committed
update
1 parent a02f89e commit 135393a

File tree

4 files changed

+16
-24
lines changed

4 files changed

+16
-24
lines changed

data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104980,7 +104980,7 @@
104980104980
"version": 0.14
104981104981
}
104982104982
],
104983-
"updated_at": "2025-11-04 21:26:50 UTC",
104983+
"updated_at": "2025-11-05 10:16:38 UTC",
104984104984
"version": 1,
104985104985
"hardware": {
104986104986
"cpus": 16,

data.min.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

r/ambiorix/DESCRIPTION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Depends:
22
ambiorix (>= 2.1.0)
3+
Remotes: ambiorix-web/ambiorix
34
Remotes:
45
ambiorix-web/ambiorix

run.sh

Lines changed: 13 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,18 @@
1-
#docker-clean && digitalocean-clean && rm -fr .neph && mkdir -p .neph/{c,clojure,cpp,crystal,csharp,dart,elixir,fsharp,go,haskell,java,javascript,julia,kotlin,nim,pony,python,ruby,rust,scala,swift} && dropdb -U postgres benchmark && createdb -U postgres benchmark && psql -U postgres benchmark < .ci/dump.sql && PROVIDER=digitalocean rake config && bin/neph --seq
2-
3-
#. .env/default
4-
#. .env/development
5-
#
6-
#doctl compute droplet create sieger --region ${DO_REGION} --image ${DO_IMAGE} --size ${DO_SIZE} --wait --ssh-keys ${DO_FINGERPRINT} --enable-private-networking
7-
#sleep 30
8-
#IP=$(doctl compute droplet list sieger --format PublicIPv4 --no-header)
9-
#rsync -avz -e "ssh -i ${DO_KEY} -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" --progress * root@${IP}:/root
10-
#scp -i ${DO_KEY} -r .ci root@${IP}:/root/
11-
#scp -i ${DO_KEY} -r .env root@${IP}:/root/.env
12-
#scp -i ${DO_KEY} ${DO_KEY} root@${IP}:${DO_KEY}
13-
#doctl compute ssh --ssh-key-path ${DO_KEY} sieger
14-
151
BASEDIR=`pwd`
162

17-
# Clean database
18-
#dropdb -U postgres benchmark
19-
#createdb -U postgres benchmark
20-
#psql -U postgres -d benchmark < dump.sql
21-
22-
find $1 -mindepth 1 -type f -name config.yaml > ~/list.txt
23-
#find $1 -mindepth 2 -type f -name config.yaml > ~/list.txt
24-
#find . -mindepth 3 -type f -name config.yaml > ~/list.txt
3+
if [ "$#" -eq 0 ]; then
4+
find . -mindepth 3 -type f -name config.yaml > ~/list.txt
5+
else
6+
COUNT=`echo $1 | grep -c "/"`
7+
if [ "$COUNT" -eq 0 ]; then
8+
find $1 -mindepth 2 -type f -name config.yaml > ~/list.txt
9+
elif [ "$COUNT" -eq 1 ] ; then
10+
find $1 -mindepth 1 -type f -name config.yaml > ~/list.txt
11+
else
12+
echo "Illegal number of parameters" >&2
13+
exit 2
14+
fi
15+
fi
2516

2617
while read line ; do
2718
echo "*********** ${line} *************"

0 commit comments

Comments
 (0)