Skip to content

Commit

Permalink
Initial release of new Sample Asset Repo
Browse files Browse the repository at this point in the history
  • Loading branch information
DRx3D committed May 18, 2023
1 parent 3165112 commit 5bad5aa
Show file tree
Hide file tree
Showing 1,531 changed files with 345,344 additions and 2 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: glTF Validation

on: [push, pull_request]

env:
CI: true
LINK: "https://github.com/KhronosGroup/glTF-Validator/releases/download/2.0.0-dev.3.8/gltf_validator-2.0.0-dev.3.8-linux64.tar.xz"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install glTF Validator
run: |
curl -sL $LINK | tar xJ
- name: Validate glTF samples
run: |
./gltf_validator -r -a ./Models/
- name: Upload Validation Reports
uses: actions/upload-artifact@v2
with:
name: validation-reports
path: |
**/*.report.json
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.DS_Store
.alg_meta
.vscode
*.blend1
Thumbs.db
desktop.ini
*.report.json
gltf_validator.exe
*.csv
metadata.template.json
ui-generator.php
Loading

0 comments on commit 5bad5aa

Please sign in to comment.