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 21, 2024
1 parent a146456 commit a27f3e0
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 a27f3e0

Please sign in to comment.