Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
privat committed Jun 24, 2024
1 parent 35afe9c commit d48b5ac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 5 additions & 2 deletions misc/jenkins/install-more.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ install_mongodb() {
echo "deb https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-7.0.list
apt-get update
apt-get install -y mongodb-org
grep mongo /etc/hosts || echo "127.0.0.1 mongo" > /etc/hosts
grep mongo /etc/hosts || echo "127.0.0.1 mongo" >> /etc/hosts
}

install_neo4j() {
Expand All @@ -15,8 +15,11 @@ install_neo4j() {
echo 'deb https://debian.neo4j.com stable 5' | tee -a /etc/apt/sources.list.d/neo4j.list
apt-get update
apt-get install neo4j
grep neo4j /etc/hosts || echo "127.0.0.1 neo4j" > /etc/hosts
grep neo4j /etc/hosts || echo "127.0.0.1 neo4j" >> /etc/hosts
}

install_mongodb
curl -v http://mongo:27017
install_neo4j
curl -v http://neo4j:7474
ps aux
2 changes: 2 additions & 0 deletions tests/example_objet.nit
Original file line number Diff line number Diff line change
Expand Up @@ -391,3 +391,5 @@ e.add_rayon(r2)
r2.quantite("Pizza") = 12
r2.quantite("Poisson pané") = 4
printn(e)

print("FAIL!")

0 comments on commit d48b5ac

Please sign in to comment.