-
Notifications
You must be signed in to change notification settings - Fork 704
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5532 from nextcloud/ci/json-validator/use-venv
ci(json-validator): use venv
- Loading branch information
Showing
1 changed file
with
37 additions
and
36 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,37 @@ | ||
name: Json Validator | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '**.json' | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- '**.json' | ||
|
||
jobs: | ||
json-validator: | ||
name: Json Validator | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Validate Json | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install python3-pip -y --no-install-recommends | ||
pip3 install json-spec | ||
export PATH="$PATH:/home/runner/.local/bin" | ||
if ! json validate --schema-file=php/containers-schema.json --document-file=php/containers.json; then | ||
exit 1 | ||
fi | ||
JSON_FILES="$(find ./community-containers -name '*.json')" | ||
mapfile -t JSON_FILES <<< "$JSON_FILES" | ||
for file in "${JSON_FILES[@]}"; do | ||
json validate --schema-file=php/containers-schema.json --document-file="$file" 2>&1 | tee -a ./json-validator.log | ||
done | ||
if grep -q "document does not validate with schema.\|invalid JSONFile" ./json-validator.log; then | ||
exit 1 | ||
fi | ||
name: Json Validator | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '**.json' | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- '**.json' | ||
|
||
jobs: | ||
json-validator: | ||
name: Json Validator | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Validate Json | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install python3-venv -y --no-install-recommends | ||
python3 -m venv venv | ||
. venv/bin/activate | ||
pip3 install json-spec | ||
if ! json validate --schema-file=php/containers-schema.json --document-file=php/containers.json; then | ||
exit 1 | ||
fi | ||
JSON_FILES="$(find ./community-containers -name '*.json')" | ||
mapfile -t JSON_FILES <<< "$JSON_FILES" | ||
for file in "${JSON_FILES[@]}"; do | ||
json validate --schema-file=php/containers-schema.json --document-file="$file" 2>&1 | tee -a ./json-validator.log | ||
done | ||
if grep -q "document does not validate with schema.\|invalid JSONFile" ./json-validator.log; then | ||
exit 1 | ||
fi |