Skip to content

Commit

Permalink
ci: fix Python version for tests
Browse files Browse the repository at this point in the history
Fixed CI environment setup with required Python version.

Follows up #727
  • Loading branch information
dmyger authored and oleg-jukovec committed Sep 29, 2024
1 parent 81ee2ab commit 039b4bd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/actions/prepare-ce-test-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ runs:
with:
go-version: '${{ env.GO_VERSION }}'

- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '${{ env.PYTHON_VERSION }}'

- name: Setup Mage
run: |
git clone https://github.com/magefile/mage
Expand All @@ -40,8 +45,7 @@ runs:
build-essential ninja-build \
lua5.1 luarocks lcov \
ruby-dev liblz4-dev autoconf \
automake \
libtool python3-pytest python3-psutil pip
automake libtool
sudo luarocks install luacheck 0.26.1
sudo gem install coveralls-lcov
sudo pip3 install tarantool
Expand Down
5 changes: 5 additions & 0 deletions .github/actions/prepare-ee-test-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ runs:
with:
go-version: '${{ env.GO_VERSION }}'

- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '${{ env.PYTHON_VERSION }}'

- name: Setup Mage
run: |
git clone https://github.com/magefile/mage
Expand Down

0 comments on commit 039b4bd

Please sign in to comment.