forked from uxlfoundation/oneapi-construction-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
107 lines (93 loc) · 3.31 KB
/
publish_docs.yml
File metadata and controls
107 lines (93 loc) · 3.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
on:
# branch_protection_rule:
# Runs on pushes targeting the default branch
push:
branches: ["colin/publish_docs"]
# 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: false
jobs:
# Build job
# build_rfc:
# # if: github.repository == 'uxlfoundation/oneapi-construction-kit' || github.event_name == 'workflow_dispatch'
# if: github.repository == 'coldav/oneapi-construction-kit' || github.event_name == 'workflow_dispatch'
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# with:
# ref: rfcs
# - name: Setup Pages
# uses: actions/configure-pages@v5
# - name: Build with Jekyll
# uses: actions/jekyll-build-pages@v1
# with:
# source: ./
# destination: ./_site/rfcs
# - name: Upload artifact
# uses: actions/upload-pages-artifact@v3
build_ock_docs:
# if: github.repository == 'uxlfoundation/oneapi-construction-kit' || github.event_name == 'workflow_dispatch'
if: github.repository == 'coldav/oneapi-construction-kit' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install apt package
run: |
sudo apt-get update
sudo apt-get install -y doxygen virtualenv
- name: Install prerequisites
run: python -m pip install -r doc/requirements.txt
- name: Build 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
mkdir docs
mv build_doc/doc/html docs/ock
- name: Checkout
uses: actions/checkout@v4
with:
ref: rfcs
path: rfcs
- name: Move rfcs to build_doc
shell: bash
run: |
mv rfcs docs
cp $GITHUB_WORKSPACE/.github/workflows/combined_docs/index.md docs
ls docs
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./docs
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
# 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