Skip to content

Commit

Permalink
Add scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
TApplencourt committed Nov 10, 2023
1 parent 463a26c commit f6a8839
Show file tree
Hide file tree
Showing 9 changed files with 1,423 additions and 540 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Unfortunately, asciidoctor-pdf gets pathname-specific errors
# building under the usual $GITHUB_WORKSPACE (/__w). As a workaround,
Expand All @@ -40,8 +40,11 @@ jobs:
run: |
cd adoc
make OUTDIR=/tmp/out QUIET= html pdf
- name: Verify reflow conformance
run: |
./adoc/scripts/verify_reflow_conformance.sh
- name: Archive generated files
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: spec-outputs
path: |
Expand Down
14 changes: 14 additions & 0 deletions adoc/scripts/apiconventions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/python3 -i
#
# Copyright 2021-2023 The Khronos Group Inc.
# SPDX-License-Identifier: Apache-2.0

# Generic alias for working group-specific API conventions interface.

# This import should be changed at the repository / working group level to
# specify the correct API's conventions.


import os

from syclconventions import SYCLConventions as APIConventions
Loading

0 comments on commit f6a8839

Please sign in to comment.