PEG syntax considerations #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ADQL Validation | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
VALIDATOR_SCRIPT: ${GITHUB_WORKSPACE}/src/adql-validator/build/install/adql-validator/bin/adql-validator | |
QUERIES_PATH : ${GITHUB_WORKSPACE}/src/adql/ivoa | |
WIKI_PAGE : wiki/${{ github.event.number == 0 && 'Master' || format('PR#{0}', github.event.number) }} | |
WIKI_URL : ${{ github.server_url }}/${{ github.repository }}/wiki/${{ github.event.number == 0 && 'Master' || format('PR%23{0}', github.event.number) }} | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v2 | |
- name: Checkout the wiki | |
uses: actions/checkout@v2 | |
with: | |
repository: ${{ github.repository }}.wiki | |
path : wiki/ | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
- name: Build the ADQL Validator | |
uses: gradle/[email protected] | |
with: | |
build-root-directory: src/adql-validator | |
arguments : installDist | |
- name: Run ADQL validation queries | |
run : ${{env.VALIDATOR_SCRIPT}} -r -f markdown ${{env.QUERIES_PATH}} > $OUTPUT_FILE | |
env : | |
OUTPUT_FILE: ${{ env.WIKI_PAGE }}.md | |
- name: Push validation report | |
uses: Andrew-Chen-Wang/github-wiki-action@v3 | |
env : | |
# Make sure you have that / at the end. | |
WIKI_DIR: wiki/ | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_MAIL: [email protected] | |
GH_NAME: ${{ github.repository_owner }} | |
#EXCLUDED_FILES: "a/ b.md" | |
- name: Set CI status | |
run : bash -c "if [ `grep -c '[0-9]\+ FAILED' ${{env.WIKI_PAGE}}.md` -gt 1 ]; then echo `grep -c '[0-9]\+ FAILED' ${{env.WIKI_PAGE}}.md`' failed validations sets! See '${{env.WIKI_URL}} ; exit 1 ; else exit 0 ; fi" | |