workflow: update to work with the images dependencies
This commit updates the GH workflow file to install the required dependencies to build the images library.
This commit is contained in:
parent
7a838332c8
commit
56f9c6969c
1 changed files with 8 additions and 1 deletions
9
.github/workflows/go.yml
vendored
9
.github/workflows/go.yml
vendored
|
|
@ -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 ./...
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue