Skip to content

Commit

Permalink
Add Build Linux Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Liebig committed Jul 10, 2022
1 parent f73d8f8 commit 8f28725
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build Linux

on:
workflow_dispatch

jobs:
build:

runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3

- name: Install Dependencies
run: |
sudo apt-get update && sudo apt-get -y install \
btrfs-progs \
git \
golang-go \
go-md2man \
iptables \
libassuan-dev \
libbtrfs-dev \
libc6-dev \
libdevmapper-dev \
libglib2.0-dev \
libgpgme-dev \
libgpg-error-dev \
libprotobuf-dev \
libprotobuf-c-dev \
libseccomp-dev \
libselinux1-dev \
libsystemd-dev \
pkg-config \
runc \
uidmap
- name: Build
run: |
make BUILDTAGS="seccomp"
sudo make podman-release
- uses: actions/upload-artifact@v3
with:
name: podman-release
path: ./podman-*.tar.gz

0 comments on commit 8f28725

Please sign in to comment.