Skip to content

added eurovoc modules config #21

added eurovoc modules config

added eurovoc modules config #21

name: transform UML model
on:
push:
branches:
- "**"
paths:
- "implementation/demo_ontology/xmi_conceptual_model/demo_ontology_CM.xml"
- "implementation/demo_ontology_module/xmi_conceptual_model/demo_ontology_module_CM.xml"
- "implementation/common_src_ap/xmi_conceptual_model/common_src_ap_CM.xml"
- "implementation/currency_src_ap/xmi_conceptual_model/currency_src_ap_CM.xml"
jobs:
report_and_glossary:
runs-on: ubuntu-latest
env:
OUTPUT_GLOSSARY_PATH: glossary/
steps:
- uses: actions/checkout@master
with:
ref: ${{ github.ref }}
- name: get model2owl
run: |
git clone --branch feature/SM15-67 https://github.com/meaningfy-ws/model2owl.git
pwd
- name: get-saxon
run: pwd && cd model2owl && make get-saxon
- name: get-jinja
run: cd model2owl && make create-virtual-env && make get-jinja
- name: generate convention report and glossary and respec
run: |
AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module common_src_ap currency_src_ap)
for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}"
do
echo "-------------------${implementation}---------------------------------"
sed -i "s/test\/ePO-default-config/..\/implementation\/${implementation}\/model2owl-config/g" model2owl/config-proxy.xsl
cat model2owl/config-proxy.xsl
CM_FILE_NAME=$(echo "${implementation}_CM.xml")
CM_FILE_PATH=$(echo "implementation/$implementation/xmi_conceptual_model/${CM_FILE_NAME}")
OUTPUT_CONVENTION_REPORT_PATH=$(echo "implementation/$implementation/conventions_report/")
OUTPUT_RESPEC_REPORT_PATH=$(echo "implementation/$implementation/respec_report/")
OUTPUT_GLOSSARY_FILE_NAME=$(echo "${implementation}_glossary.html")
ls -la implementation/$implementation/xmi_conceptual_model/
echo "CM_FILE_PATH is $CM_FILE_PATH"
echo "OUTPUT_REPORT_PATH is $OUTPUT_CONVENTION_REPORT_PATH"
echo "OUTPUT_GLOSSARY_FILE_NAME is $OUTPUT_GLOSSARY_FILE_NAME"
mkdir -p $OUTPUT_CONVENTION_REPORT_PATH
mkdir -p $OUTPUT_RESPEC_REPORT_PATH
rm -f $OUTPUT_CONVENTION_REPORT_PATH*.html || true
rm -f $OUTPUT_RESPEC_REPORT_PATH*.html || true
ls -la
cd model2owl
ls -la
make generate-convention-report XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_CONVENTION_REPORT_PATH=../$OUTPUT_CONVENTION_REPORT_PATH
make generate-glossary XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_GLOSSARY_PATH=../$OUTPUT_GLOSSARY_PATH
make respec-json XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=.
make generate-respec RESPEC_INPUT_JSON_PATH=${implementation}_CM_respec.json RESPEC_OUTPUT_FILE_PATH=../$OUTPUT_RESPEC_REPORT_PATH${implementation}_respec.html
sed -i "s/..\/implementation\/${implementation}\/model2owl-config/test\/ePO-default-config/g" config-proxy.xsl
cd ..
done
shell: bash
# - name: merge implementations xmi files into one
# run: |
# AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module common_src_ap)
# cd model2owl
# mkdir -p merge-xmis
# for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}"
# do
# cp ../implementation/$implementation/xmi_conceptual_model/*_CM.xml merge-xmis
# done
# ls merge-xmis
#
# make merge-xmi FIRST_XMI_TO_BE_MERGED_FILE_PATH=merge-xmis/demo_ontology_CM.xml
#
# echo "merged XMI file"
# ls output/combined-xmi
# shell: bash
#
# - name: generate combined glossary from the merged xmi
# run: |
# cd model2owl
# make generate-glossary XMI_INPUT_FILE_PATH=output/combined-xmi/ontologies-combined.xmi OUTPUT_GLOSSARY_PATH=../$OUTPUT_GLOSSARY_PATH
- name: remove unnecessary files
run: |
sudo rm -rf model2owl
shell: bash
- name: commit files
id: commit
run: |
git config --local user.email "[email protected]"
git config --local user.name "github-actions"
git pull
git status
git add .
if [ -z "$(git status --porcelain)" ]; then
echo "::set-output name=push::false"
else
git commit -m "Adding convention report and glossary files"
echo "::set-output name=push::true"
fi
shell: bash
- name: Push changes
if: steps.commit.outputs.push == 'true'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
# transform:
# needs: report_and_glossary
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@master
# with:
# ref: ${{ github.ref }}
#
# - name: get model2owl
# run: |
# git clone https://github.com/OP-TED/model2owl.git
# pwd
#
# - name: get-saxon
# run: pwd && cd model2owl && make get-saxon
#
# - name: get-rdflib
# run: cd model2owl && make create-virtual-env && make get-rdflib
#
# - name: transform step
# run: |
# AVAILABLE_IMPLEMENTATIONS=(demo_ontology demo_ontology_module)
# for implementation in "${AVAILABLE_IMPLEMENTATIONS[@]}"
# do
# echo "-------------------${implementation} transform---------------------------------"
# sed -i "s/test\/ePO-default-config/..\/implementation\/${implementation}\/model2owl-config/g" model2owl/config-proxy.xsl
# cat model2owl/config-proxy.xsl
#
#
# CM_FILE_NAME=$(echo "${implementation}_CM.xml")
# CM_FILE_PATH=$(echo "implementation/$implementation/xmi_conceptual_model/${CM_FILE_NAME}")
# OUTPUT_PATH_OWL=$(echo "implementation/$implementation/owl_ontology/")
# OUTPUT_PATH_SHACL=$(echo "implementation/$implementation/shacl_shapes/")
#
# ls -la implementation/$implementation/xmi_conceptual_model/
# echo "CM_FILE_PATH is $CM_FILE_PATH"
# echo "OUTPUT_PATH_OWL is $OUTPUT_PATH_OWL"
# echo "OUTPUT_PATH_SHACL is $OUTPUT_PATH_SHACL"
#
#
# cd model2owl
# ls -la
# echo "+++++++++++++++++transform to rdf++++++++++++++++++++++++++++"
# make owl-core XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_OWL
# make owl-restrictions XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_OWL
# make shacl XMI_INPUT_FILE_PATH=../$CM_FILE_PATH OUTPUT_FOLDER_PATH=../$OUTPUT_PATH_SHACL
#
# echo "+++++++++++++++++transform to turtle++++++++++++++++++++++++++++"
# echo $(ls ../${OUTPUT_PATH_OWL}*.rdf)
# make convert-rdf-to-turtle ONTOLOGY_FOLDER_PATH=../$OUTPUT_PATH_OWL
# echo $(ls ../${OUTPUT_PATH_SHACL}*.rdf)
# make convert-rdf-to-turtle ONTOLOGY_FOLDER_PATH=../$OUTPUT_PATH_SHACL
# echo "-------------------end transform---------------------------------"
#
#
# sed -i "s/..\/implementation\/${implementation}\/model2owl-config/test\/ePO-default-config/g" config-proxy.xsl
# cd ..
# done
# shell: bash
#
# - name: remove unnecessary files
# run: |
# sudo rm -rf model2owl
# shell: bash
#
# - name: commit files
# id: commit
# run: |
# git config --local user.email "[email protected]"
# git config --local user.name "github-actions"
# git pull
# git status
#
# git add .
# if [ -z "$(git status --porcelain)" ]; then
# echo "::set-output name=push::false"
# else
# git commit -m "Adding transformation files"
# echo "::set-output name=push::true"
# fi
# shell: bash
#
# - name: Push changes
# if: steps.commit.outputs.push == 'true'
# uses: ad-m/github-push-action@master
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# branch: ${{ github.ref }}