-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (45 loc) · 1.06 KB
/
docs.yml
File metadata and controls
48 lines (45 loc) · 1.06 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
name: docs
on:
# Pushes / merges to master
push:
branches:
- master
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
build:
strategy:
matrix:
include:
# Docs
- os: ubuntu-20.04
catkin: ON
aikidopy: OFF
build: DOCS
config: ""
runs-on: ${{ matrix.os }}
name: ${{ matrix.build }}
env:
USE_CATKIN: ${{ matrix.catkin }}
BUILD_NAME: ${{ matrix.build }}
CATKIN_CONFIG_OPTIONS: ${{ matrix.config }}
BUILD_AIKIDOPY: ${{ matrix.aikidopy }}
BUILD_TYPE: Release
DISTRIBUTION: ${{ secrets.DISTRIBUTION }}
REPOSITORY: aikido
SUDO: sudo
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Before install
run: .ci/before_install.sh
- name: Install
run: .ci/install.sh
- name: Script
run: .ci/script.sh
- name: After failure
if: ${{ failure() }}
run: .ci/after_failure.sh