Add Pytorch section to README #120
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish benchmark images | |
on: | |
push: | |
branches: ['**'] | |
tags: ['**'] | |
paths: | |
- .github/** | |
- chart/** | |
- images/** | |
- python/** | |
jobs: | |
build_push_images: | |
name: Build and push benchmark images | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- component: discovery | |
- component: fio | |
- component: iperf | |
- component: mpi-benchmarks | |
- component: openfoam | |
- component: perftest | |
- component: pytorch-benchmarks | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Calculate metadata for image | |
id: image-meta | |
uses: docker/metadata-action@v3 | |
with: | |
images: ghcr.io/stackhpc/kube-perftest-${{ matrix.component }} | |
# Produce the branch name or tag and the SHA as tags | |
tags: | | |
type=ref,event=branch | |
type=ref,event=tag | |
type=sha,prefix= | |
- name: Build and push image | |
uses: stackhpc/github-actions/docker-multiarch-build-push@master | |
with: | |
cache-key: ${{ matrix.component }} | |
context: ./images/${{ matrix.component }} | |
platforms: linux/amd64 | |
push: true | |
tags: ${{ steps.image-meta.outputs.tags }} | |
labels: ${{ steps.image-meta.outputs.labels }} |