Skip to content

Bump the github-actions group across 2 directories with 6 updates #31

Bump the github-actions group across 2 directories with 6 updates

Bump the github-actions group across 2 directories with 6 updates #31

Workflow file for this run

# Workflow for building and deploying a Jekyll site to GitHub Pages for docs and rfcs
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
on:
pull_request:
paths:
- '.github/workflows/publish_docs.yml'
schedule:
# Run Mon at 6pm
- cron: '0 18 * * 1'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build_ock_docs:
if: github.repository == 'uxlfoundation/oneapi-construction-kit' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: Checkout OCK
uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: 3.9
- name: Install prerequisites
run: |
sudo apt-get update
sudo apt-get install -y doxygen graphviz virtualenv
- name: Build OCK documentation
working-directory: ${{github.workspace}}
run: |
cmake -DCMAKE_BUILD_TYPE=Debug -DCA_RUNTIME_COMPILER_ENABLED=OFF -DCA_CL_ENABLE_OFFLINE_KERNEL_TESTS=OFF -DOCL_EXTENSION_cl_khr_il_program=OFF -Bbuild_doc
cmake --build build_doc --target doc_html
- name: Checkout RFCs
uses: actions/checkout@v6
with:
ref: rfcs
path: rfcs
- name: Prepare combined docs tree
shell: bash
run: |
cp -r $GITHUB_WORKSPACE/.github/workflows/combined_docs docs
mv rfcs docs
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Copy OCK documentation
shell: bash
run: |
mkdir _site
mv build_doc/doc/html _site/doc
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./docs
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: [ build_ock_docs ]
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4