mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-15 05:38:51 +00:00
73 lines
2.5 KiB
YAML
73 lines
2.5 KiB
YAML
name: GoPostSubmit
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch: {}
|
|
|
|
env:
|
|
# Common versions
|
|
GO_VERSION: '1.17'
|
|
GO_REQUIRED_MIN_VERSION: ''
|
|
GOPATH: '/home/runner/work/registration/registration/go'
|
|
defaults:
|
|
run:
|
|
working-directory: go/src/open-cluster-management.io/registration
|
|
|
|
jobs:
|
|
images:
|
|
name: images
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
arch: [ amd64, arm64 ]
|
|
steps:
|
|
- name: checkout code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 1
|
|
path: go/src/open-cluster-management.io/registration
|
|
- name: install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
- name: install imagebuilder
|
|
run: go install github.com/openshift/imagebuilder/cmd/imagebuilder@v1.2.1
|
|
- name: pull base image
|
|
run: docker pull registry.access.redhat.com/ubi8/ubi-minimal:latest --platform=linux/${{ matrix.arch }}
|
|
- name: images
|
|
run: |
|
|
IMAGE_TAG=latest-${{ matrix.arch }} \
|
|
IMAGE_BUILD_EXTRA_FLAGS="--build-arg OS=linux --build-arg ARCH=${{ matrix.arch }}" \
|
|
make images
|
|
- name: push
|
|
run: |
|
|
echo ${{ secrets.DOCKER_PASSWORD }} | docker login quay.io --username ${{ secrets.DOCKER_USER }} --password-stdin
|
|
docker push quay.io/open-cluster-management/registration:latest-${{ matrix.arch }}
|
|
image-manifest:
|
|
name: image manifest
|
|
runs-on: ubuntu-latest
|
|
needs: [ images ]
|
|
steps:
|
|
- name: checkout code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 1
|
|
path: go/src/open-cluster-management.io/registration
|
|
- name: create
|
|
run: |
|
|
echo ${{ secrets.DOCKER_PASSWORD }} | docker login quay.io --username ${{ secrets.DOCKER_USER }} --password-stdin
|
|
docker manifest create quay.io/open-cluster-management/registration:latest \
|
|
quay.io/open-cluster-management/registration:latest-amd64 \
|
|
quay.io/open-cluster-management/registration:latest-arm64
|
|
- name: annotate
|
|
run: |
|
|
docker manifest annotate quay.io/open-cluster-management/registration:latest \
|
|
quay.io/open-cluster-management/registration:latest-amd64 --arch amd64
|
|
docker manifest annotate quay.io/open-cluster-management/registration:latest \
|
|
quay.io/open-cluster-management/registration:latest-arm64 --arch arm64
|
|
- name: push
|
|
run: |
|
|
docker manifest push quay.io/open-cluster-management/registration:latest
|