-
Notifications
You must be signed in to change notification settings - Fork 4
141 lines (124 loc) · 5.36 KB
/
docker_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
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
name: ci
on:
push:
branches:
- "main"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set short SHA
id: vars
run: echo "sha_short=$(git rev-parse --short ${{ github.sha }})" >> $GITHUB_OUTPUT
- name: Check SHA value
run: echo ${{ steps.vars.outputs.sha_short }}
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
version: "lab:latest"
driver: cloud
endpoint: "nuitrcs/bob-the-builder"
- name: Evaluate which Dockerfiles have changed
uses: dorny/paths-filter@v3
id: changes
with:
filters: |
cellprofiler:
- 'cellprofiler/Dockerfile'
projectchrono-deps:
- 'projectchrono-deps/Dockerfile'
mcribs:
- 'M-CRIB-S/Dockerfile'
llama:
- 'llama-cpp-python/Dockerfile'
sasview:
- 'sasview/Dockerfile.ubuntu2204'
simpson:
- 'SIMPSON/Dockerfile'
dahsi:
- 'DAHSI/Dockerfile'
eig:
- 'eig/Dockerfile'
- name: Build and push cellprofiler
if: steps.changes.outputs.cellprofiler == 'true'
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:cellprofiler"
tags: nuitrcs/cellprofiler:${{ steps.vars.outputs.sha_short }}
# For pull requests, export results to the build cache.
# Otherwise, push to a registry.
outputs: ${{ github.event_name == 'pull_request' && 'type=cacheonly' || 'type=registry,push=true' }}
- name: Build and push project chrono
if: steps.changes.outputs.projectchrono-deps == 'true'
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:projectchrono-deps"
tags: nuitrcs/projectchrono-deps:${{ steps.vars.outputs.sha_short }}
# For pull requests, export results to the build cache.
# Otherwise, push to a registry.
outputs: ${{ github.event_name == 'pull_request' && 'type=cacheonly' || 'type=registry,push=true' }}
- name: Build and push M-CRIB-S
if: steps.changes.outputs.mcribs == 'true'
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:M-CRIB-S"
tags: nuitrcs/m-crib-s:${{ steps.vars.outputs.sha_short }}
# For pull requests, export results to the build cache.
# Otherwise, push to a registry.
outputs: ${{ github.event_name == 'pull_request' && 'type=cacheonly' || 'type=registry,push=true' }}
- name: Build and push llama
if: steps.changes.outputs.llama == 'true'
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:llama-cpp-python"
tags: nuitrcs/llama-cpp-python:${{ steps.vars.outputs.sha_short }}
# For pull requests, export results to the build cache.
# Otherwise, push to a registry.
outputs: ${{ github.event_name == 'pull_request' && 'type=cacheonly' || 'type=registry,push=true' }}
- name: Build and sasview
if: steps.changes.outputs.sasview == 'true'
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:sasview"
tags: nuitrcs/sasview:${{ steps.vars.outputs.sha_short }}
file: Dockerfile.ubuntu2204
# For pull requests, export results to the build cache.
# Otherwise, push to a registry.
outputs: ${{ github.event_name == 'pull_request' && 'type=cacheonly' || 'type=registry,push=true' }}
- name: Build and push SIMPSON
if: steps.changes.outputs.simpson == 'true'
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:SIMPSON"
tags: nuitrcs/simpson:${{ steps.vars.outputs.sha_short }}
file: Dockerfile
# For pull requests, export results to the build cache.
# Otherwise, push to a registry.
outputs: ${{ github.event_name == 'pull_request' && 'type=cacheonly' || 'type=registry,push=true' }}
- name: Build and push DAHSI
if: steps.changes.outputs.dahsi == 'true'
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:DAHSI"
tags: nuitrcs/dahsi:${{ steps.vars.outputs.sha_short }}
file: Dockerfile
# For pull requests, export results to the build cache.
# Otherwise, push to a registry.
outputs: ${{ github.event_name == 'pull_request' && 'type=cacheonly' || 'type=registry,push=true' }}
- name: Build and push EIG
if: steps.changes.outputs.eig == 'true'
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:eig"
tags: nuitrcs/eig:${{ steps.vars.outputs.sha_short }}
file: Dockerfile
# For pull requests, export results to the build cache.
# Otherwise, push to a registry.
outputs: ${{ github.event_name == 'pull_request' && 'type=cacheonly' || 'type=registry,push=true' }}