Skip to content

Commit

Permalink
Fix python3 package on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
owenthereal committed May 29, 2023
1 parent bf3437a commit 32fd8fa
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,15 @@ jobs:
git submodule update --init --recursive
- name: Install packages
run: |
sudo apt-get update -qq
sudo apt-get install -y automake autoconf bison flex gdb python valgrind
- name: Prep
run: |
#pyenv global 3.6.7
#pip3 install pipenv
#(cd docs && pipenv sync)
#if [ -n "$COVERAGE" ]; then pip install --user cpp-coveralls; fi
echo SHELL=$SHELL
echo PATH=$PATH
which bison
bison --version
apt-get update -qq
apt-get install -y \
automake \
autoconf \
bison \
flex \
gdb \
python3 \
valgrind
- name: Build
env:
CC: ${{ matrix.compiler }}
Expand Down

0 comments on commit 32fd8fa

Please sign in to comment.