ci: Make it possible to pass the path to bioconda-utils/ as a build-arg #11
Workflow file for this run
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: Build image | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
paths: | |
- 'images/build-env/**' | |
- '.github/workflows/build-env-image.yml' | |
jobs: | |
build: | |
name: Build image - ${{ matrix.image }} | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
include: | |
- arch: arm64 | |
image: bioconda/bioconda-utils-build-env-cos7-aarch64 | |
base_image: quay.io/condaforge/linux-anvil-aarch64 | |
- arch: amd64 | |
image: bioconda/bioconda-utils-build-env-cos7-x86_64 | |
base_image: quay.io/condaforge/linux-anvil-cos7-x86_64 | |
steps: | |
- name: Checkout bioconda-containers | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Checkout bioconda-utils | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
repository: 'bioconda/bioconda-utils' | |
path: 'bioconda-utils' | |
- id: get-tag | |
run: | | |
tag=${{ github.event.release && github.event.release.tag_name || github.sha }} | |
printf %s "tag=${tag#v}" >> $GITHUB_OUTPUT | |
- name: Install qemu dependency | |
if: ${{ matrix.arch == 'arm64' }} | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: arm64 | |
- name: Build image | |
id: buildah-build | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: ${{ matrix.image }} | |
arch: ${{ matrix.arch }} | |
build-args: | | |
BASE_IMAGE=${{ matrix.base_image }} | |
tags: >- | |
latest | |
${{ steps.get-tag.outputs.tag }} | |
dockerfiles: | | |
./images/build-env/Dockerfile | |
- name: Test built image | |
run: | | |
image='${{ steps.buildah-build.outputs.image }}' | |
for tag in ${{ steps.buildah-build.outputs.tags }} ; do | |
podman run --rm "${image}:${tag}" bioconda-utils --version | |
done | |
- name: Push To Quay | |
if: github.ref == 'refs/heads/main' && github.repository == 'bioconda/bioconda-containers' | |
uses: redhat-actions/push-to-registry@v2 | |
with: | |
image: ${{ steps.buildah-build.outputs.image }} | |
tags: ${{ steps.buildah-build.outputs.tags }} | |
registry: ${{ secrets.QUAY_BIOCONDA_REPO }} | |
username: ${{ secrets.QUAY_BIOCONDA_USERNAME }} | |
password: ${{ secrets.QUAY_BIOCONDA_TOKEN }} | |
build-manifest: | |
needs: [build] | |
if: github.ref == 'refs/heads/main' && github.repository == 'bioconda/bioconda-containers' | |
name: quay.io/bioconda/${{ matrix.cfg.DOCKER_MANIFEST }}:${{ matrix.cfg.DOCKER_TAG }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
cfg: | |
- DOCKER_MANIFEST: bioconda-utils-build-env-cos7 | |
DOCKER_TAG: "latest" | |
DOCKER_IMAGES: "quay.io/<<USER>>/bioconda-utils-build-env-cos7:<<TAG>>,quay.io/<<USER>>/bioconda-utils-build-env-cos7-aarch64:<<TAG>>" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Interpolate placeholders | |
id: interpolate | |
run: | | |
set -x | |
INTERPOLATED=`echo "${{ matrix.cfg.DOCKER_IMAGES }}" | sed "s#<<USER>>#${{ secrets.QUAY_BIOCONDA_USERNAME }}#g" | sed "s#<<TAG>>#${{ matrix.cfg.DOCKER_TAG }}#g"` | |
echo "DOCKER_IMAGES=${INTERPOLATED}" >> "$GITHUB_OUTPUT" | |
- name: Login to Quay.io registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ secrets.QUAY_BIOCONDA_REPO }} | |
username: ${{ secrets.QUAY_BIOCONDA_USERNAME }} | |
password: ${{ secrets.QUAY_BIOCONDA_TOKEN }} | |
- name: Push Docker manifest list for quay.io/bioconda | |
uses: Noelware/[email protected] | |
with: | |
inputs: quay.io/${{ secrets.QUAY_BIOCONDA_USERNAME }}/${{ matrix.cfg.DOCKER_MANIFEST }}:${{ matrix.cfg.DOCKER_TAG }} | |
images: ${{ steps.interpolate.outputs.DOCKER_IMAGES }} | |
push: true |