-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (37 loc) · 940 Bytes
/
build.yaml
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
name: Docker Image Build Workflow
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
schedule:
- cron: "0 0 * * 0"
jobs:
build_docker_image:
name: Build ${{ matrix.image }}
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
image:
- ros_kinetic
- ros_kinetic_cuda9.2_chainer
- ros_melodic
- ros_melodic_realsense
- ros_melodic_cuda10.0
- ros_melodic_cuda9.2_chainer
- ros_noetic
- ros_noetic_realsense
- ros_noetic_cuda11.3_tensorrt7.2
- ros_noetic_cuda11.3_torch1.10
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Build Image
uses: docker/build-push-action@v2
with:
context: ./${{ matrix.image }}
push: false
tags: sktometometo/${{ matrix.image }}