Skip to content

Commit

Permalink
github/workflows: install golang
Browse files Browse the repository at this point in the history
as it is needed for `get-deps` and to run `yq`

Signed-off-by: Christoph Ostarek <christoph@zededa.com>
  • Loading branch information
christoph-zededa committed Jul 10, 2024
1 parent 8bdfa40 commit 3e1f388
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ jobs:
run: |
rm -rf assets && mkdir -p assets
- name: Pull the EVE release from DockerHUB or build it
uses: actions/setup-go@v5
with:
go-version: '1.22'
run: |
HV=kvm
if [ "${{ github.event.repository.full_name }}" = "lf-edge/eve" ]; then
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ jobs:
path: ~/.linuxkit/cache
key: linuxkit-${{ matrix.arch }}-${{ github.sha }}
- name: Build packages
uses: actions/setup-go@v5
with:
go-version: '1.22'
run: |
make V=1 PRUNE=1 ZARCH=${{ matrix.arch }} pkgs
- name: Post package report
Expand Down

0 comments on commit 3e1f388

Please sign in to comment.