Skip to content

Commit 3320462

Browse files
committed
go
1 parent 9d1adda commit 3320462

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/maturin_builds.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,22 @@ jobs:
2525
cache: 'pip'
2626

2727
- name: Set up Perl
28-
uses: shogo82148/actions-setup-perl@v1
28+
uses: perl-actions/install-with-cpanm@v1
2929
with:
30-
perl-version: '5.x'
31-
distribution: 'default'
30+
install: |
31+
IPC::Cmd
32+
YAML
3233
3334
- name: Install system dependencies
3435
run: |
3536
sudo apt-get update && sudo apt-get install -y \
3637
libclang-dev \
3738
liblzma-dev
38-
awk '/dependencies = \[/,/\]/' pyproject.toml | \
39-
grep -v "dependencies" | \
40-
grep -v "\[" | grep -v "\]" | tr -d '", ' | \
41-
xargs pip install
42-
cpanm IPC::Cmd YAML
39+
40+
# awk '/dependencies = \[/,/\]/' pyproject.toml | \
41+
# grep -v "dependencies" | \
42+
# grep -v "\[" | grep -v "\]" | tr -d '", ' | \
43+
# xargs pip install
4344
4445
- name: Build wheels
4546
uses: PyO3/maturin-action@v1

0 commit comments

Comments
 (0)