Skip to content

Commit

Permalink
ci: install gettext on Windows CI runners
Browse files Browse the repository at this point in the history
This seems to be removed by GitHub in some recent updates.
  • Loading branch information
nijel committed Mar 6, 2024
1 parent 685883a commit 7d93266
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libgettextpo-dev libxml2-dev libxmlsec1-dev gettext hunspell-af
- name: Install Windows dependencies
if: matrix.os == 'windows-latest'
run: |
nuget install Gettext.Tools -Version 0.22.4 -OutputDirectory c:\nuget;
Add-Content $env:GITHUB_PATH "C:\nuget\Gettext.Tools.0.22.4\tools\bin"
- name: Update pip
run: python -m pip install --upgrade pip wheel
- name: Install pip dependencies
Expand Down

0 comments on commit 7d93266

Please sign in to comment.