Skip to content

Commit

Permalink
debug ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dqbd committed Mar 5, 2023
1 parent 7db26cb commit 08403a1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 114 deletions.
81 changes: 0 additions & 81 deletions .github/workflows/build_jar.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/build_js.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
matrix:
# cibuildwheel builds linux wheels inside a manylinux container
# it also takes care of procuring the correct python version for us
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [38, 39, 310, 311]
os: [ubuntu-latest]
python-version: [38]

steps:
- uses: actions/checkout@v3

- uses: pypa/[email protected]
env:
CIBW_BUILD: "cp${{ matrix.python-version}}-*"
CIBW_BUILD: "cp${{ matrix.python-version }}-*"

- uses: actions/upload-artifact@v3
with:
Expand Down
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@ build-frontend = "build"
build-verbosity = 1

linux.before-all = [
"ulimit -n 1024 && yum install -y openssl-devel",
"curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y"
"ulimit -n 1024",
"(command -v apk || echo 'no-apk')",
"(command -v yum || echo 'no-yum')",
"(command -v apt-get || echo 'no-apt-get')",
"(command -v dnf || echo 'no-dnf')",
"yum install openssl-devel -y",
"(curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y)"
]
linux.environment = { PATH = "$PATH:$HOME/.cargo/bin" }
macos.before-all = "rustup target add aarch64-apple-darwin"
Expand Down

0 comments on commit 08403a1

Please sign in to comment.