Skip to content

Commit

Permalink
.github: install build deps for grub2 autogen.sh
Browse files Browse the repository at this point in the history
Requires autopoint, which is a separate tool for translations.

Signed-off-by: Joachim Wiberg <[email protected]>
  • Loading branch information
troglobit committed Apr 24, 2024
1 parent 816c1fd commit f812fba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
docker image prune -af
docker volume prune -f
docker container prune -f
- name: Install deps ...
run: |
sudo apt-get -y update
sudo apt-get -y install pkg-config autopoint
- uses: actions/checkout@v4
- name: Set Build Variables
id: vars
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
steps:
- name: Install deps ...
run: |
sudo apt-get -y update
sudo apt-get -y install pkg-config autopoint
- uses: actions/checkout@v4
with:
submodules: 'true'
Expand Down

0 comments on commit f812fba

Please sign in to comment.