Skip to content

Commit

Permalink
Fix pip calls in compiled pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
p-s-cott committed Jul 27, 2023
1 parent 8db4c6b commit 24a6824
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/app-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ jobs:
- name: Setup environment
run: |
yum -y install python3
pip3 install --upgrade pip
python3 -m pip install --upgrade pip
yum -y install gcc python3-devel python3-wheel upx openssl-devel
pip3 install -r ./requirements.txt
python3 -m pip install -r ./requirements.txt
- name: Build & Run Binary
run: |
pip3 install pyinstaller
python3 -m pip install pyinstaller
chmod +x ./release/generate_linux_binary.sh
./release/generate_linux_binary.sh
chmod +x ./dist/varc
Expand Down

0 comments on commit 24a6824

Please sign in to comment.