Skip to content

Commit 10d76a0

Browse files
fix arm?
1 parent cc62471 commit 10d76a0

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/docker-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
type=raw,value=latest,enable={{is_default_branch}}
6363
type=raw,value=v9
6464
type=raw,value=v9.1
65-
type=raw,value=v9.1.0
65+
type=raw,value=v9.1.1
6666
6767
- name: Build and push Docker image
6868
uses: docker/build-push-action@v6

.github/workflows/python-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ jobs:
8989
python-version: 3.x
9090
- name: Build wheels
9191
uses: PyO3/maturin-action@v1
92+
env:
93+
# Fix ARM cross-compilation: define __ARM_ARCH for assembly files
94+
CFLAGS_aarch64_unknown_linux_gnu: "-march=armv8-a"
95+
CFLAGS_armv7_unknown_linux_gnueabihf: "-march=armv7-a -mfpu=neon"
9296
with:
9397
target: ${{ matrix.platform.target }}
9498
args: --release --out dist --find-interpreter

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloudcheck"
3-
version = "9.1.0"
3+
version = "9.1.1"
44
edition = "2024"
55
description = "CloudCheck is a simple Rust tool to check whether an IP address or hostname belongs to a cloud provider."
66
license = "GPL-3.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "cloudcheck"
7-
version = "9.1.0"
7+
version = "9.1.1"
88
description = "Detailed database of cloud providers. Instantly look up a domain or IP address"
99
readme = "README.md"
1010
requires-python = ">=3.9"

0 commit comments

Comments
 (0)