File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 32
32
run : make test
33
33
e2e :
34
34
name : E2E
35
- runs-on : ubuntu-latest
35
+ runs-on :
36
+ labels : ubuntu-latest-16-cores
36
37
# Pull requests from the same repository won't trigger this checks as they were already triggered by the push
37
38
if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
38
39
strategy :
Original file line number Diff line number Diff line change 15
15
16
16
jobs :
17
17
build-push-docker-image :
18
- runs-on : ubuntu-latest
18
+ runs-on :
19
+ labels : ubuntu-latest-16-cores
19
20
steps :
20
21
- name : Checkout
21
22
uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -105,12 +105,22 @@ images:
105
105
.PHONY : test_images
106
106
test_images :
107
107
${IMG_BUILDER} build $(BUILD_ARGS ) --platform $(PLATFORMS ) --build-arg port=${BASE_IMAGE_SSH_PORT} -t ${REGISTRY} /base:${RELEASE_VERSION} build/base
108
+ $(MAKE ) -j3 test_images_openmpi test_images_intel test_images_mpich
109
+
110
+ .PHONY : test_images_openmpi
111
+ test_images_openmpi :
108
112
${IMG_BUILDER} build $(BUILD_ARGS ) --platform $(PLATFORMS ) --build-arg BASE_LABEL=${RELEASE_VERSION} -t ${REGISTRY} /openmpi:${RELEASE_VERSION} build/base -f build/base/openmpi.Dockerfile
109
113
${IMG_BUILDER} build $(BUILD_ARGS ) --platform $(PLATFORMS ) -t ${REGISTRY} /openmpi-builder:${RELEASE_VERSION} build/base -f build/base/openmpi-builder.Dockerfile
110
114
${IMG_BUILDER} build $(BUILD_ARGS ) --platform $(PLATFORMS ) --build-arg BASE_LABEL=${RELEASE_VERSION} -t ${REGISTRY} /mpi-pi:${RELEASE_VERSION} -openmpi examples/v2beta1/pi
115
+
116
+ .PTHONY : test_images_intel
117
+ test_images_intel :
111
118
${IMG_BUILDER} build $(BUILD_ARGS ) --platform $(INTEL_PLATFORMS ) --build-arg BASE_LABEL=${RELEASE_VERSION} -t ${REGISTRY} /intel:${RELEASE_VERSION} build/base -f build/base/intel.Dockerfile
112
119
${IMG_BUILDER} build $(BUILD_ARGS ) --platform $(INTEL_PLATFORMS ) -t ${REGISTRY} /intel-builder:${RELEASE_VERSION} build/base -f build/base/intel-builder.Dockerfile
113
120
${IMG_BUILDER} build $(BUILD_ARGS ) --platform $(INTEL_PLATFORMS ) --build-arg BASE_LABEL=${RELEASE_VERSION} -t ${REGISTRY} /mpi-pi:${RELEASE_VERSION} -intel examples/v2beta1/pi -f examples/v2beta1/pi/intel.Dockerfile
121
+
122
+ .PHOTNY : test_images_mpich
123
+ test_images_mpich :
114
124
${IMG_BUILDER} build $(BUILD_ARGS ) --platform $(MPICH_PLATFORMS ) --build-arg BASE_LABEL=${RELEASE_VERSION} -t ${REGISTRY} /mpich:${RELEASE_VERSION} build/base -f build/base/mpich.Dockerfile
115
125
${IMG_BUILDER} build $(BUILD_ARGS ) --platform $(MPICH_PLATFORMS ) -t ${REGISTRY} /mpich-builder:${RELEASE_VERSION} build/base -f build/base/mpich-builder.Dockerfile
116
126
${IMG_BUILDER} build $(BUILD_ARGS ) --platform $(MPICH_PLATFORMS ) --build-arg BASE_LABEL=${RELEASE_VERSION} -t ${REGISTRY} /mpi-pi:${RELEASE_VERSION} -mpich examples/v2beta1/pi -f examples/v2beta1/pi/mpich.Dockerfile
You can’t perform that action at this time.
0 commit comments