forked from b-it-bots/mas_industrial_robotics
-
Notifications
You must be signed in to change notification settings - Fork 5
144 lines (120 loc) · 3.92 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
---
name: CI
on:
pull_request:
push:
branches:
- indigo
- kinetic
- kinetic-devel
- melodic
- melodic-devel
- noetic
schedule:
- cron: "0 1 * * 0" # every 01.00 week 0 (sunday)
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
outputs:
ros_distro: ${{ steps.setup_image.outputs.ros_distro }}
image_tag: ${{ steps.setup_image.outputs.image_tag }}
owner: ${{ steps.setup_image.outputs.owner }}
steps:
- uses: actions/checkout@v2
- name: Setup image
id: setup_image
run: |
if [ "$GITHUB_EVENT_NAME" = "pull_request" ]
then
GH_BRANCH=$GITHUB_BASE_REF
else
GH_BRANCH=${GITHUB_REF##*/}
fi
ROS_DISTRO="$(cut -d'-' -f1 <<<$GH_BRANCH)"
DEVEL_BRANCH="$(cut -d'-' -f2 <<<$GH_BRANCH)"
if [[ $DEVEL_BRANCH == "devel" ]] ; then IMAGE_TAG=devel; else IMAGE_TAG=latest ; fi
echo $ROS_DISTRO
echo $IMAGE_TAG
echo "::set-output name=ros_distro::$ROS_DISTRO"
echo "::set-output name=image_tag::$IMAGE_TAG"
echo "::set-output name=owner::ghcr.io/b-it-bots/mas_industrial_robotics"
build:
name: Build
needs: setup
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Install sphinx dependencies
run: |
sudo pip3 install --upgrade pip
sudo pip3 install sphinx
sudo pip3 install sphinx-rtd-theme
- name: Build docs
run: |
cd docs
DOCS_DIR=$(pwd)/build
rm -rf build
make html
- name: Build image
id: build_image
run: |
ROS_DISTRO=${{ needs.setup.outputs.ros_distro }}
IMAGE_TAG=${{ needs.setup.outputs.image_tag }}
OWNER=${{ needs.setup.outputs.owner }}
docker build -t $OWNER/industrial-$ROS_DISTRO:$IMAGE_TAG --build-arg ROS_DISTRO=$ROS_DISTRO -f images/mas_industrial_robotics/Dockerfile .
- name: Docker image list
run: docker images
deploy:
name: Deploy
needs: setup
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_TOKEN }}
- name: Build and deploy image
id: build_and_deploy_image
run: |
# GitHub container registry is still beta
ROS_DISTRO=${{ needs.setup.outputs.ros_distro }}
IMAGE_TAG=${{ needs.setup.outputs.image_tag }}
OWNER=${{ needs.setup.outputs.owner }}
docker build -t $OWNER/industrial-$ROS_DISTRO:$IMAGE_TAG --build-arg ROS_DISTRO=$ROS_DISTRO -f images/mas_industrial_robotics/Dockerfile .
docker push $OWNER/industrial-$ROS_DISTRO:$IMAGE_TAG
- name: Docker image list
run: docker images
build-docs:
name: Build Docs
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v2
- name: Install sphinx dependencies
run: |
sudo pip3 install --upgrade pip
sudo pip3 install sphinx
sudo pip3 install sphinx-rtd-theme
- name: Build docs
run: |
cd docs
DOCS_DIR=$(pwd)/build
rm -rf build
make html
# MIR uses readthedocs, no need to push the docs to wiki
#- cd /tmp && git clone https://$GH_USERNAME:[email protected]/b-it-bots/wiki.git --branch $BRANCH
#- cp -r $DOCS_DIR/html/ /tmp/wiki/work/ && cd wiki
#- git checkout $BRANCH && git add * && git commit -m "Update mas_industrial_robotics documentation via Travis CI" || true
#- git push origin $BRANCH