Skip to content

Added integration of CommunityLifeCycle to the algorithm as well as d… #125

Added integration of CommunityLifeCycle to the algorithm as well as d…

Added integration of CommunityLifeCycle to the algorithm as well as d… #125

Workflow file for this run

name: Java CI with Gradle
on:
push:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
services:
arangodb:
image: arangodb/arangodb:3.10.0
ports:
- 8529:8529 # Maps the default ArangoDB port to the same port on the host
env:
ARANGO_ROOT_PASSWORD: password
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Wait for ArangoDB to be ready
run: |
echo "Waiting for ArangoDB to become ready..."
until curl -s -u root:password --fail http://localhost:8529/_api/version; do
echo "Waiting for ArangoDB to start..."
sleep 10
done
echo "ArangoDB is ready!"
- name: Build WebOCD Service
run: ./gradlew build
env:
ARANGO_HOST: localhost
ARANGO_PORT: 8529
ARANGO_USER: root
ARANGO_PASSWORD: password
ARANGO_DB: ocdDB
- name: Print ArangoDB logs
if: always()
run: docker logs $(docker ps -aqf "name=arangodb")
- name: Additional diagnostics if service fails
if: failure() # Executes only if previous steps fail
run: |
echo "Fetching additional diagnostic information..."
CONTAINER_ID=$(docker ps -aqf "name=arangodb")
docker inspect $CONTAINER_ID