Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Udopia committed Nov 8, 2024
1 parent c763134 commit 61f3cc1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest] #, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v4
Expand Down
14 changes: 11 additions & 3 deletions instdeps.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
#!/bin/bash

dnf install -y libarchive-devel
dnf install -y cmake
dnf groupinstall -y "Development Tools"
if command -v dnf > /dev/null; then
dnf install -y libarchive-devel
dnf install -y cmake
dnf groupinstall -y "Development Tools"
elif command -v apt > /dev/null; then
sudo apt update
sudo apt install -y libarchive-dev
sudo apt install -y cmake
sudo apt install -y build-essential
fi
pip install scikit-build
# cd /project
git clone https://github.com/pybind/pybind11.git
cd pybind11
Expand Down

0 comments on commit 61f3cc1

Please sign in to comment.