Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ name: CI

on:
push:
branches:
- main
tags:
- 'v*'
# branches:
# - main
# tags:
# - 'v*'
pull_request:
workflow_dispatch:

Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
needs: test
strategy:
matrix:
target: [x86_64, aarch64]
target: [x86_64, aarch64, riscv64gc-unknown-linux-gnu]
steps:
- uses: actions/checkout@v4
- name: Build wheels
Expand All @@ -75,7 +75,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: linux-wheels-${{ matrix.target }}
path: dist

windows:
Expand All @@ -95,7 +95,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: windows-wheels-${{ matrix.target }}
path: dist

macos:
Expand All @@ -115,7 +115,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: macos-wheels-${{ matrix.target }}
path: dist

sdist:
Expand All @@ -131,7 +131,7 @@ jobs:
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels
name: sdist
path: dist

release:
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[build-system]
requires = ["maturin>=0.12,<0.13"]
requires = ["maturin==1.9.3"]
build-backend = "maturin"

[project]
name = "lintrunner"
version = "0.12.7"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Rust",
Expand Down