Skip to content

Commit

Permalink
.github/workflows/build.yml: Use requirements.txt for python packages
Browse files Browse the repository at this point in the history
  • Loading branch information
aewag committed Nov 2, 2023
1 parent 81974d9 commit 31b6b86
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 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,10 @@ 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
run: sudo apt upgrade -y
run: 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
run: pip install -r requirements.txt

- name: Checkout submodules
run: git submodule update --init
Expand Down

0 comments on commit 31b6b86

Please sign in to comment.