Skip to content

Commit

Permalink
Merge pull request #1 from davvalent/main
Browse files Browse the repository at this point in the history
Build et déploiement de la visualisation webvowl
  • Loading branch information
emchateau authored Sep 5, 2023
2 parents 87c0422 + 50c7568 commit c3b988c
Show file tree
Hide file tree
Showing 19 changed files with 58,615 additions and 3 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/deploy-visualization.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: deploy-visualization

on:
push:
branches:
- main # Set a branch to deploy

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- name: Setup Pages
id: pages
uses: actions/configure-pages@v3

- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '11'

- name: Build Visualization
run: make build

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./webvowl

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
/owl2vowl*
ontologies/
webvowl/
ontologies/
21 changes: 21 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Makefile
# Generates VOWL file for visualization in WebVOWL

SHELL := /bin/bash
.PHONY: vowl clean

# paths
ONTO = ./display-ontology.ttl
VOWL = ./webvowl/data/display.json

vowl:
@echo "Generate VOWL"
java -jar ./owl2vowl/owl2vowl.jar \
-file $(ONTO) \
-output $(VOWL)
@echo "DONE"

clean:
@echo "foobar"

build: vowl
Binary file added owl2vowl/owl2vowl.jar
Binary file not shown.
Loading

0 comments on commit c3b988c

Please sign in to comment.