Skip to content

Commit

Permalink
Merge pull request #19 from telekom/fix/gh-actions
Browse files Browse the repository at this point in the history
Add missing packages to GH Actions
  • Loading branch information
chdxD1 committed Jun 19, 2023
2 parents 1bf277b + 9d46165 commit ba55e73
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/container-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
with:
go-version: "^1.18"

- name: Install packages
run: sudo apt-get install -y llvm clang libbpf-dev libbpf-dev linux-headers-generic-hwe-20.04

- name: Build
run: |
make build
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/draft_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ jobs:
name: Create Draft Release
runs-on: ubuntu-latest
steps:
# - name: Set env
# run: echo "RELEASE_TAG=${GITHUB_REF:10}" >> $GITHUB_ENV
- name: Checkout the Repository
uses: actions/checkout@v3
with:
Expand All @@ -20,9 +18,10 @@ jobs:
uses: actions/setup-go@v4
with:
go-version: "^1.18"
# - name: generate release notes
# run: |
# make release-notes

- name: Install packages
run: sudo apt-get install -y llvm clang libbpf-dev libbpf-dev linux-headers-generic-hwe-20.04

- name: Build
run: |
make build
Expand All @@ -49,6 +48,9 @@ jobs:
with:
go-version: "^1.18"

- name: Install packages
run: sudo apt-get install -y llvm clang libbpf-dev libbpf-dev linux-headers-generic-hwe-20.04

- name: Build
run: |
make build
Expand Down

0 comments on commit ba55e73

Please sign in to comment.