Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sansyrox committed Sep 8, 2023
1 parent c7edccc commit fff7f1d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/preview-deployments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

name: Preview Release

env:
PY_ALL: 3.8 3.9 3.10 3.11

on:
push:
branches:
Expand Down Expand Up @@ -151,4 +154,4 @@ jobs:
source venv/bin/activate
pip install --upgrade pip setuptools wheel
pip install --force-reinstall dist/robyn*.whl
cd ~ && python -c 'import robyn'
cd ~ && $PYTHON -c 'import robyn'
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pythonize = "0.19.0"
serde = "1.0.178"
serde_json = "1.0.104"

[target.'cfg(not(any(all(target_arch="armv7"), all(target_arch="aarch64"))))'.dependencies]
[target.'cfg(not(any(all(target_arch="armv7", target_os="linux"), all(target_arch="aarch64", target_os="linux"))))'.dependencies]
mimalloc = { version = "0.1.38", default-features = false, features = ["local_dynamic_tls"] }

[features]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#[global_allocator]
#[cfg(not(any(
all(target_os = "linux", target_arch = "armv7"),
all(target_os = "linux", target_arch = "aarch64")
)))]
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;

mod executors;
Expand Down

0 comments on commit fff7f1d

Please sign in to comment.