mirror of https://github.com/astral-sh/ruff
Build wheels for Linux (#42)
This commit is contained in:
parent
ecf1633a14
commit
37401bdfb0
|
|
@ -0,0 +1,189 @@
|
||||||
|
name: Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
create:
|
||||||
|
tags:
|
||||||
|
- v*
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
macos:
|
||||||
|
runs-on: macos-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: ['3.7', '3.8', '3.9', '3.10']
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
- name: Install Rust toolchain
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
target: aarch64-apple-darwin
|
||||||
|
profile: minimal
|
||||||
|
default: true
|
||||||
|
- name: Build
|
||||||
|
run: cargo build --release
|
||||||
|
- name: Tests
|
||||||
|
run: cargo test --no-default-features --release
|
||||||
|
- name: Build wheels - x86_64
|
||||||
|
uses: messense/maturin-action@v1
|
||||||
|
with:
|
||||||
|
target: x86_64
|
||||||
|
args: -i python --release --out dist --sdist
|
||||||
|
- name: Install built wheel - x86_64
|
||||||
|
run: |
|
||||||
|
pip install ruff --no-index --find-links dist --force-reinstall
|
||||||
|
- name: Build wheels - universal2
|
||||||
|
if: ${{ matrix.python-version >= '3.8' || matrix.python-version == '3.10' }}
|
||||||
|
uses: messense/maturin-action@v1
|
||||||
|
with:
|
||||||
|
args: -i python --release --universal2 --out dist
|
||||||
|
- name: Install built wheel - universal2
|
||||||
|
if: ${{ matrix.python-version >= '3.8' }}
|
||||||
|
run: |
|
||||||
|
pip install ruff --no-index --find-links dist --force-reinstall
|
||||||
|
- name: Upload wheels
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: wheels
|
||||||
|
path: dist
|
||||||
|
|
||||||
|
windows:
|
||||||
|
runs-on: windows-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: ['3.7', '3.8', '3.9', '3.10']
|
||||||
|
target: [x64, x86]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
architecture: ${{ matrix.target }}
|
||||||
|
- name: Update rustup
|
||||||
|
run: rustup self update
|
||||||
|
- name: Install Rust toolchain
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
profile: minimal
|
||||||
|
default: true
|
||||||
|
- name: Build
|
||||||
|
if: matrix.target == 'x64'
|
||||||
|
run: cargo build --release
|
||||||
|
- name: Tests
|
||||||
|
if: matrix.target == 'x64'
|
||||||
|
run: cargo test --no-default-features --release
|
||||||
|
- name: Build wheels
|
||||||
|
uses: messense/maturin-action@v1
|
||||||
|
with:
|
||||||
|
target: ${{ matrix.target }}
|
||||||
|
args: -i python --release --out dist
|
||||||
|
- name: Install built wheel
|
||||||
|
run: |
|
||||||
|
pip install ruff --no-index --find-links dist --force-reinstall
|
||||||
|
- name: Upload wheels
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: wheels
|
||||||
|
path: dist
|
||||||
|
|
||||||
|
linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: ['3.7', '3.8', '3.9', '3.10']
|
||||||
|
target: [x86_64, i686]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Install Rust toolchain
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
profile: minimal
|
||||||
|
default: true
|
||||||
|
- name: Build
|
||||||
|
run: cargo build --release
|
||||||
|
- name: Tests
|
||||||
|
run: cargo test --no-default-features --release
|
||||||
|
- uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
- name: Build Wheels
|
||||||
|
uses: messense/maturin-action@v1
|
||||||
|
with:
|
||||||
|
target: ${{ matrix.target }}
|
||||||
|
manylinux: auto
|
||||||
|
args: -i ${{ matrix.python-version }} --release --out dist
|
||||||
|
- name: Install built wheel
|
||||||
|
if: matrix.target == 'x86_64'
|
||||||
|
run: |
|
||||||
|
pip install ruff --no-index --find-links dist --force-reinstall
|
||||||
|
- name: Upload wheels
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: wheels
|
||||||
|
path: dist
|
||||||
|
|
||||||
|
linux-cross:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: ['3.7', '3.8', '3.9', '3.10']
|
||||||
|
target: [aarch64, armv7, s390x, ppc64le]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Build Wheels
|
||||||
|
uses: messense/maturin-action@v1
|
||||||
|
with:
|
||||||
|
target: ${{ matrix.target }}
|
||||||
|
manylinux: auto
|
||||||
|
args: -i ${{ matrix.python-version }} --release --out dist
|
||||||
|
- uses: uraimo/run-on-arch-action@v2.2.0
|
||||||
|
name: Install built wheel
|
||||||
|
with:
|
||||||
|
arch: ${{ matrix.target }}
|
||||||
|
distro: ubuntu20.04
|
||||||
|
githubToken: ${{ github.token }}
|
||||||
|
# Mount the dist directory as /artifacts in the container
|
||||||
|
dockerRunArgs: |
|
||||||
|
--volume "${PWD}/dist:/artifacts"
|
||||||
|
install: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y --no-install-recommends python3 python3-venv software-properties-common
|
||||||
|
add-apt-repository ppa:deadsnakes/ppa
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y curl python3.7-venv python3.9-venv python3.10-venv
|
||||||
|
run: |
|
||||||
|
ls -lrth /artifacts
|
||||||
|
PYTHON=python${{ matrix.python-version }}
|
||||||
|
$PYTHON -m venv venv
|
||||||
|
venv/bin/pip install -U pip
|
||||||
|
venv/bin/pip install ruff --no-index --find-links /artifacts --force-reinstall
|
||||||
|
- name: Upload wheels
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: wheels
|
||||||
|
path: dist
|
||||||
|
|
||||||
|
release:
|
||||||
|
name: Release
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: "startsWith(github.ref, 'refs/tags/')"
|
||||||
|
needs: [ macos, windows, linux, linux-cross ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
name: wheels
|
||||||
|
- uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: '3.10'
|
||||||
|
- name: Publish to PyPi
|
||||||
|
env:
|
||||||
|
TWINE_USERNAME: __token__
|
||||||
|
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|
||||||
|
run: |
|
||||||
|
pip install --upgrade wheel pip setuptools twine
|
||||||
|
twine upload --skip-existing *
|
||||||
|
|
@ -1713,6 +1713,7 @@ dependencies = [
|
||||||
"common-path",
|
"common-path",
|
||||||
"dirs 4.0.0",
|
"dirs 4.0.0",
|
||||||
"fern",
|
"fern",
|
||||||
|
"filetime",
|
||||||
"log",
|
"log",
|
||||||
"notify",
|
"notify",
|
||||||
"pyo3",
|
"pyo3",
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@ colored = { version = "2.0.0" }
|
||||||
common-path = { version = "1.0.0" }
|
common-path = { version = "1.0.0" }
|
||||||
dirs = { version = "4.0.0" }
|
dirs = { version = "4.0.0" }
|
||||||
fern = { version = "0.6.1" }
|
fern = { version = "0.6.1" }
|
||||||
|
filetime = { version = "0.2.17" }
|
||||||
log = { version = "0.4.17" }
|
log = { version = "0.4.17" }
|
||||||
notify = { version = "4.0.17" }
|
notify = { version = "4.0.17" }
|
||||||
pyo3 = { version = "0.17.1", features = ["auto-initialize"] }
|
pyo3 = { version = "0.17.1", features = ["auto-initialize"] }
|
||||||
|
|
|
||||||
|
|
@ -6,10 +6,7 @@
|
||||||
An extremely fast Python linter, written in Rust.
|
An extremely fast Python linter, written in Rust.
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<picture>
|
|
||||||
<source srcset="https://user-images.githubusercontent.com/1309177/187221271-9db38ced-c622-406a-abf3-dec27ebc1b08.svg">
|
|
||||||
<img alt="Bar chart with benchmark results" src="https://user-images.githubusercontent.com/1309177/187221271-9db38ced-c622-406a-abf3-dec27ebc1b08.svg">
|
<img alt="Bar chart with benchmark results" src="https://user-images.githubusercontent.com/1309177/187221271-9db38ced-c622-406a-abf3-dec27ebc1b08.svg">
|
||||||
</picture>
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
|
|
@ -18,7 +15,7 @@ An extremely fast Python linter, written in Rust.
|
||||||
|
|
||||||
Major features:
|
Major features:
|
||||||
|
|
||||||
- 10-100x faster than your current linter (parallelized by-default).
|
- 10-100x faster than your current linter.
|
||||||
- Installable via `pip`.
|
- Installable via `pip`.
|
||||||
- Python 3.10 compatibility.
|
- Python 3.10 compatibility.
|
||||||
- [ESLint](https://eslint.org/docs/latest/user-guide/command-line-interface#caching)-inspired cache semantics.
|
- [ESLint](https://eslint.org/docs/latest/user-guide/command-line-interface#caching)-inspired cache semantics.
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
FROM python:3.10.6-buster
|
||||||
|
|
||||||
|
RUN pip install ruff
|
||||||
|
RUN touch foo.py
|
||||||
|
RUN ruff foo.py
|
||||||
|
|
@ -21,6 +21,7 @@ author = "Charlie Marsh"
|
||||||
author_email = "charlie.r.marsh@gmail.com"
|
author_email = "charlie.r.marsh@gmail.com"
|
||||||
url = "https://github.com/charliermarsh/ruff"
|
url = "https://github.com/charliermarsh/ruff"
|
||||||
description = "An extremely fast Python linter, written in Rust."
|
description = "An extremely fast Python linter, written in Rust."
|
||||||
|
requires-python = ">=3.7"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["maturin>=0.13,<0.14"]
|
requires = ["maturin>=0.13,<0.14"]
|
||||||
|
|
@ -28,3 +29,5 @@ build-backend = "maturin"
|
||||||
|
|
||||||
[tool.maturin]
|
[tool.maturin]
|
||||||
bindings = "bin"
|
bindings = "bin"
|
||||||
|
sdist-include = ["Cargo.lock"]
|
||||||
|
strip = true
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
use std::collections::hash_map::DefaultHasher;
|
use std::collections::hash_map::DefaultHasher;
|
||||||
use std::hash::{Hash, Hasher};
|
use std::hash::{Hash, Hasher};
|
||||||
use std::os::unix::fs::MetadataExt;
|
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
use cacache::Error::EntryNotFound;
|
use cacache::Error::EntryNotFound;
|
||||||
|
use filetime::FileTime;
|
||||||
use log::error;
|
use log::error;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
|
|
@ -14,7 +14,6 @@ const VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
struct CacheMetadata {
|
struct CacheMetadata {
|
||||||
size: u64,
|
|
||||||
mtime: i64,
|
mtime: i64,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -90,7 +89,7 @@ pub fn get(path: &Path, settings: &Settings, mode: &Mode) -> Option<Vec<Message>
|
||||||
Ok(encoded) => match path.metadata() {
|
Ok(encoded) => match path.metadata() {
|
||||||
Ok(m) => match bincode::deserialize::<CheckResult>(&encoded[..]) {
|
Ok(m) => match bincode::deserialize::<CheckResult>(&encoded[..]) {
|
||||||
Ok(CheckResult { metadata, messages }) => {
|
Ok(CheckResult { metadata, messages }) => {
|
||||||
if m.size() == metadata.size && m.mtime() == metadata.mtime {
|
if FileTime::from_last_modification_time(&m).unix_seconds() == metadata.mtime {
|
||||||
return Some(messages);
|
return Some(messages);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -112,8 +111,7 @@ pub fn set(path: &Path, settings: &Settings, messages: &[Message], mode: &Mode)
|
||||||
if let Ok(metadata) = path.metadata() {
|
if let Ok(metadata) = path.metadata() {
|
||||||
let check_result = CheckResultRef {
|
let check_result = CheckResultRef {
|
||||||
metadata: &CacheMetadata {
|
metadata: &CacheMetadata {
|
||||||
size: metadata.size(),
|
mtime: FileTime::from_last_modification_time(&metadata).unix_seconds(),
|
||||||
mtime: metadata.mtime(),
|
|
||||||
},
|
},
|
||||||
messages,
|
messages,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue