-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (55 loc) · 1.26 KB
/
stages.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
name: Create and publish a Docker image
on:
push:
branches:
- main
- dev
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
env:
REGISTRY: ghcr.io
REPO_NAME: ${{ github.repository }}
jobs:
stage-1:
strategy:
matrix:
image:
- r-4-duckdb
# - r-debug # forked from wch/r-debug, not yet ready
- r-minimal
# - rig-centos7 # EOL
- rig-debian
- rig-rocky8
- rig-ubuntu
- rig-ubuntu24
- rigraph-san
- tofutf
uses: cynkra/docker-images/.github/workflows/publish.yml@main
with:
image: ${{ matrix.image }}
stage-2:
needs: stage-1
strategy:
matrix:
image:
- r-postgres
- dm
- rig-ubuntu-dbi
- rig-ubuntu-duckdb
- rig-ubuntu-igraph
- rig-ubuntu-revdepcheck
- rig-ubuntu24-gcc14
uses: cynkra/docker-images/.github/workflows/publish.yml@main
with:
image: ${{ matrix.image }}
stage-3:
needs: stage-2
strategy:
matrix:
image:
- rig-ubuntu-duckdb-dev
- rig-ubuntu24-gcc14-duckdb
uses: cynkra/docker-images/.github/workflows/publish.yml@main
with:
image: ${{ matrix.image }}