forked from gazebosim/gz-rendering
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 963 Bytes
/
deepx-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
name: DeepX CI
run-name: Build Docker container and perform unit testing
on:
push:
branches: [gz-rendering7]
pull_request:
branches: [gz-rendering7]
workflow_dispatch:
jobs:
build-library:
runs-on: ubuntu-20.04
name: Build and test
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Login to Github Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: deepx-inc
password: ${{ github.token }}
- name: Build the Docker image
run: |
docker build -t deepx-gz-rendering .
# Skip ctest for now because many tests are throwing exceptions due to lack of display.
- name: Build gz-rendering and test
run: |
docker run deepx-gz-rendering:latest bash \
-c 'cd /root/gazebo/gz-rendering/build; \
cmake ..; \
cmake --build . --target install;'