82 lines
2.6 KiB
YAML
82 lines
2.6 KiB
YAML
# This pipeline runs the internationalization coverage test and then uses a
|
|
# python script to generate a table from the results for viewing in the
|
|
# README.md file
|
|
pr: none
|
|
|
|
trigger:
|
|
- master
|
|
|
|
variables:
|
|
# Normally this test outputs to console. This variable appears as env param
|
|
# I18N_COVERAGE_FILE, which tells the test to write the output to a file
|
|
# instead.
|
|
- name: i18n.coverage.file
|
|
value: ../i18n-coverage.csv
|
|
- group: PGP_VAR_GROUP
|
|
- group: SONATYPE_VAR_GROUP
|
|
- group: GIT_VAR_GROUP
|
|
|
|
jobs:
|
|
- job: generate_csv_png_and_commit
|
|
pool:
|
|
vmImage: "ubuntu-latest"
|
|
steps:
|
|
# For creating the snapshot release with maven, we need to build a fake settings.xml for it to read from.
|
|
# This is done for the master branch merges only.
|
|
- bash: |
|
|
git config --global user.email $(GIT_USER_EMAIL)
|
|
git config --global user.name $(GIT_USER_NAME)
|
|
displayName: 'Set up git'
|
|
|
|
# Install pip packages
|
|
- bash: |
|
|
pip3 install matplotlib
|
|
pip3 install numpy
|
|
pip3 install pandas
|
|
displayName: 'Set up python packages'
|
|
|
|
- task: Maven@3
|
|
inputs:
|
|
mavenPomFile: 'pom.xml'
|
|
options: '-pl org.hl7.fhir.utilities -DskipTests=true'
|
|
mavenOptions: '-Dmaven.resolver.transport=wagon'
|
|
javaHomeOption: 'JDKVersion'
|
|
jdkVersionOption: '1.11'
|
|
jdkArchitectureOption: 'x64'
|
|
goals: 'install'
|
|
displayName: 'Build utilities module'
|
|
|
|
- task: Maven@3
|
|
inputs:
|
|
mavenPomFile: 'pom.xml'
|
|
options: '-pl org.hl7.fhir.utilities '
|
|
mavenOptions: '-Dtest=I18nCoverageTest#testPhraseCoverage'
|
|
javaHomeOption: 'JDKVersion'
|
|
jdkVersionOption: '1.11'
|
|
jdkArchitectureOption: 'x64'
|
|
goals: 'surefire:test'
|
|
displayName: 'Run i18n coverage test to generate csv'
|
|
|
|
- task: PythonScript@0
|
|
inputs:
|
|
scriptSource: 'filePath'
|
|
scriptPath: .azure/i18n-coverage-table/generate-i18n-coverage-table.py
|
|
arguments:
|
|
displayName: 'Make png table from coverage test csv'
|
|
|
|
# Verify png file generation
|
|
- bash: |
|
|
ls -l ./i18n-coverage-table.png
|
|
|
|
- bash: |
|
|
git fetch
|
|
git checkout master
|
|
git status
|
|
git add ./i18n-coverage.csv
|
|
git add ./i18n-coverage-table.png
|
|
git commit . -m "Updating i18n-coverage csv and png table ***NO_CI***"
|
|
|
|
git push https://$(GIT_PAT)@github.com/hapifhir/org.hl7.fhir.core.git
|
|
|
|
displayName: 'Push updated csv and plot to git.'
|