Skip to content

Commit

Permalink
.g/w/build.yml: Install py packages via requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
aewag committed Nov 2, 2023
1 parent 81974d9 commit ef785a6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
schedule:
- cron: 0 8 * * 0

jobs:
jobs:
build:
name: Test Build
runs-on: ubuntu-latest
Expand All @@ -18,7 +18,11 @@ jobs:
uses: actions/checkout@v2

- name: install packages
run: sudo apt update; sudo apt upgrade -y; sudo apt install -y build-essential ninja-build libglib2.0-dev libfdt-dev libpixman-1-dev zlib1g-dev python3-tables python3-pandas python3-prctl python3-json5 python3-protobuf libprotobuf-c-dev protobuf-compiler protobuf-c-compiler python3-tqdm; pip install protobuf==4.21.12
run: |
sudo apt update
sudo apt upgrade -y
sudo apt install -y build-essential ninja-build libglib2.0-dev libfdt-dev libpixman-1-dev zlib1g-dev libprotobuf-c-dev protobuf-compiler protobuf-c-compiler
pip install -r requirements.txt
- name: Checkout submodules
run: git submodule update --init
Expand Down

0 comments on commit ef785a6

Please sign in to comment.