-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (36 loc) · 1.09 KB
/
cmake.yml
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
name: CMake
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cuda-toolkit
uses: Jimver/[email protected]
with:
cuda: 11.2.2
- name: Install Doxygen
run: sudo apt-get install doxygen
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_DOCS:BOOL=ON
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
#- name: Run tests
# env:
# CTEST_OUTPUT_ON_FAILURE: 1
# working-directory: ${{github.workspace}}/build
# run: ctest
- name: Doxygen
run: cmake --build ${{github.workspace}}/build --target doxygen
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ${{github.workspace}}/build/html