51 lines
1.6 KiB
YAML
51 lines
1.6 KiB
YAML
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
|
|
|
|
- name: get submodule
|
|
run: git submodule update --init --recursive --remote
|
|
|
|
# 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
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Install dependencies
|
|
run: sudo make install-deps
|
|
- name: Build runtime
|
|
run: make build-rust
|
|
|
|
- name: Build wasm-bpf image and push to GitHub Container Registry
|
|
uses: docker/build-push-action@v2
|
|
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 }}
|