-
Notifications
You must be signed in to change notification settings - Fork 5
62 lines (54 loc) · 2.09 KB
/
generate_yaml_model.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: generating yaml file
on:
push:
paths:
- 'linkml-schema/source_library_generation/**'
pull_request:
paths:
- 'linkml-schema/source_library_generation/**'
permissions:
contents: write
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install the required python packages
run: |
python -m pip install .[test]
pip install git+https://github.com/brain-bican/bkbit.git
pip install git+https://github.com/linkml/schemasheets.git@649af7e1
- name: Other installations
run: |
sudo apt-get update
sudo apt-get install -y build-essential git wget curl
- name: Generate yaml model
run: |
cd linkml-schema
bkbit schema2model -o library_generation.yaml --gsheet --gsheet-download-dir source_library_generation/gsheet_output source_library_generation/gsheet.yaml --no-inlined
cd ..
- name: Adding other model representations to git
# this might fail when running in PR mode because of the git push
# but the files should be added since it's also run on push
continue-on-error: true
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
if ! git ls-files --error-unmatch linkml-schema/library_generation.yaml; then
git add linkml-schema/library_generation.yaml
git add linkml-schema/source_library_generation/gsheet_output
git commit -m "adding a new linkml model"
elif ! git diff --quiet; then
git add linkml-schema/library_generation.yaml
git add linkml-schema/source_library_generation/gsheet_output
git commit -m "generate new version of the linkml model"
echo "Changes detected, after committing"
git push
else
echo "No changes to commit"
fi