Skip to content
Snippets Groups Projects
Commit 58c34bd3 authored by Alexander V. Tikhonov's avatar Alexander V. Tikhonov Committed by Kirill Yukhin
Browse files

github-ci: avoid failure on packages installation in Telegram action

Pip and jq installation may fail if the host is real, in this way it
should be manually pre-installed.
parent 5c68884a
No related branches found
No related tags found
No related merge requests found
......@@ -5,8 +5,8 @@ runs:
steps:
# install 'requests' Python module
- run: |
python -m pip install --upgrade pip
pip install requests
python -m pip install --upgrade pip ||:
pip install requests ||:
shell: bash
# logout github environment
- env:
......@@ -30,7 +30,8 @@ runs:
shell: bash
# get job id number
- run: |
apt update && apt install -y jq
apt update ||:
apt install -y jq ||:
echo 'JOB_ID<<EOF' >> $GITHUB_ENV
curl -s https://api.github.com/repos/tarantool/tarantool/actions/runs/${{ github.run_id }}/jobs | jq -r '.jobs[0].id' | tee -a $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment