Skip to content

Commit aea5b96

Browse files
aleasimsnkaskov
authored andcommitted
Fix dependencies in release workflow
1 parent 46f4741 commit aea5b96

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/release_linux.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ jobs:
3939
build-essential \
4040
libssl-dev \
4141
cmake \
42-
python3.10 \
43-
python3-pip \
4442
git \
4543
curl \
4644
unzip \
4745
zstd \
48-
libicu-dev
46+
libicu-dev \
47+
pkg-config \
48+
gawk
4949
5050
- name: Print toolchain information
5151
run: |
@@ -75,6 +75,15 @@ jobs:
7575
platform_version: 22.04
7676
toolset: gcc
7777
arch: x86
78+
79+
- name: Install Python
80+
uses: actions/setup-python@v4
81+
with:
82+
python-version: '3.10'
83+
84+
- name: Install Rust
85+
uses: dtolnay/rust-toolchain@stable
86+
7887
- name: Install aws tools
7988
run: |
8089
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"

0 commit comments

Comments
 (0)