Merge pull request #1 from eunomia-bpf/dependabot/cargo/rustix-0.36.17 #19
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 docker image | |
on: | |
push: | |
branches: "master" | |
jobs: | |
build-and-push-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' | |
- name: install deps | |
run: | | |
sudo apt-get install -y --no-install-recommends \ | |
wget pkg-config build-essential zlib1g-dev \ | |
clang llvm libelf1 libelf-dev | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Cache rust | |
uses: Swatinem/rust-cache@v2 | |
- name: build package | |
run: make build | |
# 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: Build 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/amd64 | |
# Note: tags has to be all lower-case | |
tags: | | |
ghcr.io/${{ github.repository_owner }}/libbpf-rs-template:latest | |
push: true | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} |