-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (35 loc) · 1.04 KB
/
ci.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
name: CI
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- name: Installing dependencies
run: |
wget https://github.com/siemens-mobile-hacks/doxygen/releases/download/v1.10.4/doxygen_1.0_amd64.deb
sudo dpkg -i doxygen_1.0_amd64.deb
sudo apt-get -y install gcc-arm-none-eabi
- name: Smoke Test
run: ./swilib/tools/smoke-test.sh
- name: Build Docs
run: ./swilib/tools/gen-docs.sh
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v3
# If you're changing the branch from main,
# also change the `main` in `refs/heads/main`
# below accordingly.
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./swilib/html/