Skip to content

Commit

Permalink
workflow: update to work with the images dependencies
Browse files Browse the repository at this point in the history
This commit updates the GH workflow file to install the required
dependencies to build the images library.
  • Loading branch information
mvo5 committed Nov 28, 2024
1 parent 7a83833 commit 56f9c69
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,14 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: 'stable'

- name: Apt update
run: sudo apt update

# This is needed for the container resolver dependencies
- name: Install libgpgme devel package
run: sudo apt install -y libgpgme-dev libbtrfs-dev libdevmapper-dev podman

- name: Build
run: go build -v ./...
Expand Down

0 comments on commit 56f9c69

Please sign in to comment.