Adopt requirements.txt file in workflows

Signed-off-by: Pedro Kaj Kjellerup Nacht <pnacht@google.com>
This commit is contained in:
Pedro Kaj Kjellerup Nacht 2023-06-07 19:47:57 +00:00
parent a8e2f1b6ea
commit 7c08bb85d5
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View file

@ -39,7 +39,7 @@ jobs:
python3 \
python3-setuptools
- name: Install Python Dependencies
run: sudo pip3 install fonttools meson==0.56.0 gcovr==5.0
run: sudo pip3 install -r .ci/requirements.txt --require-hashes
- name: Setup Meson
run: |
ccache --version

View file

@ -35,7 +35,7 @@ jobs:
ninja \
pkg-config
- name: Install Python Dependencies
run: pip3 install fonttools gcovr==5.0
run: pip3 install -r .ci/requirements.txt --require-hashes
- name: Setup Meson
run: |
export PKG_CONFIG_PATH="/usr/local/opt/icu4c/lib/pkgconfig:/usr/local/opt/libffi/lib/pkgconfig"

View file

@ -44,7 +44,7 @@ jobs:
arch : ${{ matrix.ARCH }}
- name: Install Python Dependencies
run: |
pip install --upgrade meson ninja fonttools
pip3 install -r .ci/requirements.txt --require-hashes
- name: Setup Meson
run: |
sccache --version

View file

@ -56,7 +56,7 @@ jobs:
mingw-w64-${{ matrix.MSYS2_ARCH }}-python-pip
- name: Install Python Dependencies
run: |
pip install --upgrade fonttools
pip3 install -r .ci/requirements.txt --require-hashes
- name: Setup Meson
run: |
meson setup build \