Skip to content

Commit a4b1178

Browse files
committed
.github/workflows/test.yaml: Test dzil image as well
This probably needs its own workflow later, but for now just do a quick build and check using the dzil image.
1 parent 8f4a5bb commit a4b1178

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Diff for: .github/workflows/test.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build image
1+
name: Build images
22

33
on:
44
push:
@@ -13,12 +13,15 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@master
16-
- name: Build base perl image
16+
- name: Build images
1717
run: |
1818
docker version
1919
[ -n $DEBIAN_PROXY ] && docker_build_opts="--build-arg=DEBIAN_PROXY=${DEBIAN_PROXY}"
2020
docker build "$docker_build_opts" -t deriv/perl .
21+
cd dzil && docker build "$docker_build_opts" -t deriv/dzil .
2122
- name: Inspect image creation and tag time
2223
run: |
2324
docker image inspect --format \'{{.Created}}\' deriv/perl
2425
docker image inspect --format \'{{.Metadata.LastTagTime}}\' deriv/perl
26+
docker image inspect --format \'{{.Created}}\' deriv/dzil
27+
docker image inspect --format \'{{.Metadata.LastTagTime}}\' deriv/dzil

0 commit comments

Comments
 (0)