Skip to content

Commit

Permalink
Try to build aarch64 wheels again
Browse files Browse the repository at this point in the history
Do not use parallel builds otherwise the build never completes on QEMU.
  • Loading branch information
jlaine committed Nov 5, 2023
1 parent 068fc09 commit d0b94b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
arch: arm64
- os: macos-latest
arch: x86_64
- os: ubuntu-latest
arch: aarch64
- os: ubuntu-latest
arch: i686
- os: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-openssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def run(cmd, *, env=None):
extract("openssl", "https://www.openssl.org/source/openssl-3.1.4.tar.gz")
os.chdir("openssl")
run(["./config"] + configure_args + ["no-comp", "no-shared", "no-tests"])
run(["make", "-j"])
run(["make"])
run(["make", "install_sw", "INSTALLTOP=" + dest_dir, "LIBDIR=lib"])

run(["tar", "czvf", output_tarball, "-C", dest_dir, "include", "lib"])

0 comments on commit d0b94b3

Please sign in to comment.