docs: add doc to run with podman and wasm (#136) #62
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 and public wasm-bpf docker image | |
on: | |
push: | |
branches: "main" | |
jobs: | |
# define job to build and publish docker image | |
build-and-push-wasm-bpf-image: | |
runs-on: ubuntu-latest | |
# run only when code is compiling and tests are passing | |
if: "!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[ci skip]')" | |
# steps to perform in job | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
# setup Docker buld action | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Github Packages | |
uses: docker/login-action@v2 | |
if: github.repository_owner == 'eunomia-bpf' | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install dependencies | |
run: sudo make install-deps | |
- name: Cache rust | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: runtime | |
- name: Build runtime | |
run: make build-rust | |
- name: Build wasm-bpf image and push to GitHub Container Registry | |
uses: docker/build-push-action@v2 | |
if: github.repository_owner == 'eunomia-bpf' | |
with: | |
# relative path to the place where source code with Dockerfile is located | |
context: ./ | |
file: ./Dockerfile | |
platforms: linux/arm64 | |
# Note: tags has to be all lower-case | |
tags: | | |
ghcr.io/${{ github.repository_owner }}/wasm-bpf:latest | |
push: true | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} |