Build Wasm Simd Image #29
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 Wasm Simd Image | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'The tag of the image to build' | |
required: true | |
type: string | |
env: | |
REGISTRY: ghcr.io | |
ORG: cosmos | |
IMAGE_NAME: ibc-go-wasm-simd | |
GIT_TAG: "${{ inputs.tag }}" | |
jobs: | |
build-image-at-tag: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: "${{ env.GIT_TAG }}" | |
fetch-depth: 0 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: make python-install-deps | |
- name: Log in to the Container registry | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build image | |
run: | | |
version="$(scripts/get-libwasm-version.py --get-version)" | |
checksum="$(scripts/get-libwasm-version.py --get-checksum)" | |
# remove all `/` or `+` characters from the docker tag and replace them with a -. | |
# this ensures the docker tag is valid. | |
docker_tag="$(echo $GIT_TAG | sed 's/[^a-zA-Z0-9\.]/-/g')" | |
docker buildx build . -t "${REGISTRY}/${ORG}/${IMAGE_NAME}:${docker_tag}" -f modules/light-clients/08-wasm/Dockerfile --build-arg LIBWASM_VERSION=${version} --build-arg LIBWASM_CHECKSUM=${checksum} --platform linux/amd64,linux/arm64 | |
docker push "${REGISTRY}/${ORG}/${IMAGE_NAME}:${docker_tag}" |