File size: 9,196 Bytes
0e1a481 13ced77 72251db 13ced77 0e1a481 92f0a3d 0e3269b 92f0a3d d88ad14 5a2a8c2 92f0a3d 5a2a8c2 13ced77 5a2a8c2 13ced77 5a2a8c2 13ced77 5a2a8c2 13ced77 5a2a8c2 13ced77 5a2a8c2 9360932 92f0a3d 9360932 13ced77 9360932 13ced77 9360932 13ced77 9360932 13ced77 9360932 31471a4 d88ad14 9360932 d88ad14 13ced77 d88ad14 13ced77 31471a4 279c0fc 31471a4 c86cdf9 31471a4 af06305 31471a4 c86cdf9 31471a4 13ced77 31471a4 13ced77 c86cdf9 d88ad14 e4f6cdb c86cdf9 d88ad14 afc4527 d88ad14 812e904 |
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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 |
# Copyright Jiaqi Liu
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
name: CI/CD
"on":
pull_request:
push:
branches:
- master
env:
PYTHON_VERSION: "3.10"
NEO4J_ENTERPRISE_VERSION: 5.24-enterprise
NEO4J_URI: neo4j://localhost:7687
NEO4J_DATABASE: neo4j
NEO4J_USERNAME: not used
NEO4J_PASSWORD: not used
jobs:
cancel-previous:
name: Cancel Previous Runs In Order to Allocate Action Resources Immediately for Current Run
if: github.ref != 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: Cancel previous
uses: styfle/cancel-workflow-action@0.10.1
with:
access_token: ${{ github.token }}
yaml-lint:
name: YAML Style Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actionshub/yamllint@main
markdown-lint:
name: Markdown Style Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actionshub/markdownlint@main
linkChecker:
name: Link Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Link Checker
uses: lycheeverse/lychee-action@v1.9.0
with:
fail: true
tests:
needs: [yaml-lint, markdown-lint, linkChecker]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [
{
name: German,
load-script: .github/load_german.py
},
{
name: Ancient Greek,
load-script: .github/load_ancient_greek.py
},
{
name: Latin,
load-script: .github/load_latin.py
},
{
name: all languages (race condition test ①),
load-script: .github/load_all_in_parallel.py
},
{
name: all languages (race condition test ②),
load-script: .github/load_all_in_parallel.py
},
{
name: all languages (race condition test ③),
load-script: .github/load_all_in_parallel.py
},
{
name: all languages (race condition test ④),
load-script: .github/load_all_in_parallel.py
},
{
name: all languages (race condition test ⑤),
load-script: .github/load_all_in_parallel.py
},
{
name: all languages (race condition test ⑥),
load-script: .github/load_all_in_parallel.py
},
{
name: all languages (race condition test ⑦),
load-script: .github/load_all_in_parallel.py
},
{
name: all languages (race condition test ⑧),
load-script: .github/load_all_in_parallel.py
},
{
name: all languages (race condition test ⑨),
},
{
name: all languages (race condition test ⑩),
load-script: .github/load_all_in_parallel.py
}
]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Startup a Neo4J database
run: docker run --publish=7474:7474 --publish=7687:7687 --env=NEO4J_AUTH=none --env=NEO4J_ACCEPT_LICENSE_AGREEMENT=yes neo4j:${{ env.NEO4J_ENTERPRISE_VERSION }} &
- name: Wait for database to be ready
uses: iFaxity/wait-on-action@v1
with:
resource: http://localhost:7474
- name: Test loading ${{ matrix.language.name }}
run: |
pip3 install --upgrade --force-reinstall wilhelm-python-sdk
python3 ${{ matrix.language.load-script }}
env:
NEO4J_URI: ${{ env.NEO4J_URI }}
NEO4J_DATABASE: ${{ env.NEO4J_DATABASE }}
NEO4J_USERNAME: ${{ env.NEO4J_USERNAME }}
NEO4J_PASSWORD: ${{ env.NEO4J_PASSWORD }}
docker:
name: Test Docker build and publish image to DockerHub
needs: [yaml-lint, markdown-lint, linkChecker]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Startup a Neo4J database
run: docker run --publish=7474:7474 --publish=7687:7687 --env=NEO4J_AUTH=none --name data-loader --env=NEO4J_ACCEPT_LICENSE_AGREEMENT=yes neo4j:${{ env.NEO4J_ENTERPRISE_VERSION }} &
- name: Wait for database to be ready
uses: iFaxity/wait-on-action@v1
with:
resource: http://localhost:7474
- name: Load all languages into the intermediate container
run: |
pip3 install --upgrade --force-reinstall wilhelm-python-sdk
python3 .github/load_german.py
python3 .github/load_ancient_greek.py
python3 .github/load_latin.py
env:
NEO4J_URI: ${{ env.NEO4J_URI }}
NEO4J_DATABASE: ${{ env.NEO4J_DATABASE }}
NEO4J_USERNAME: ${{ env.NEO4J_USERNAME }}
NEO4J_PASSWORD: ${{ env.NEO4J_PASSWORD }}
- name: Copy over data onto host
run: docker cp data-loader:/data .
- name: Test image build
uses: docker/build-push-action@v3
with:
context: .
push: false
- name: Login to DockerHub
if: github.ref == 'refs/heads/master'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push image to DockerHub
if: github.ref == 'refs/heads/master'
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/wilhelm-vocabulary:latest
- name: Push image Description
if: github.ref == 'refs/heads/master'
uses: peter-evans/dockerhub-description@v4
with:
username: jack20191124
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: ${{ secrets.DOCKERHUB_USERNAME }}/wilhelm-vocabulary
readme-filepath: README.md
cleanup-neo4j:
if: github.ref == 'refs/heads/master'
needs: [tests, docker]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Cleanup
run: |
pip3 install --upgrade --force-reinstall wilhelm-python-sdk
python3 .github/cleanup_neo4j.py
env:
NEO4J_URI: ${{ secrets.NEO4J_URI }}
NEO4J_DATABASE: ${{ secrets.NEO4J_DATABASE }}
NEO4J_USERNAME: ${{ secrets.NEO4J_USERNAME }}
NEO4J_PASSWORD: ${{ secrets.NEO4J_PASSWORD }}
load-vocabulary:
name: Load ${{ matrix.language.name }} vocabularies
if: github.ref == 'refs/heads/master'
needs: cleanup-neo4j
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [
{
name: German,
load-script: .github/load_german.py
},
{
name: Ancient Greek,
load-script: .github/load_ancient_greek.py
},
{
name: Latin,
load-script: .github/load_latin.py
}
]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Load ${{ matrix.language.name }}
run: |
pip3 install --upgrade --force-reinstall wilhelm-python-sdk
python3 ${{ matrix.language.load-script }}
env:
NEO4J_URI: ${{ secrets.NEO4J_URI }}
NEO4J_DATABASE: ${{ secrets.NEO4J_DATABASE }}
NEO4J_USERNAME: ${{ secrets.NEO4J_USERNAME }}
NEO4J_PASSWORD: ${{ secrets.NEO4J_PASSWORD }}
sync-to-huggingface-space:
if: github.ref == 'refs/heads/master'
needs: tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
lfs: true
- name: Push to hub
run: git push https://QubitPi:$HF_TOKEN@huggingface.co/datasets/QubitPi/wilhelm-vocabulary master:main -f
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|