Skip to content

Commit

Permalink
Merge pull request #21 from alexandrainst/fix-ci
Browse files Browse the repository at this point in the history
Fix CI
  • Loading branch information
quackzar authored May 6, 2024
2 parents fd059be + 326dcc0 commit 2145b6d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
test:
name: cargo test
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: Install C compiler
run: sudo apt-get update && sudo apt-get install -y build-essential
Expand All @@ -17,7 +17,7 @@ jobs:
# Check formatting with rustfmt
formatting:
name: cargo fmt
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Ensure rustfmt is installed and setup problem matcher
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pyo3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ permissions:

jobs:
linux:
runs-on: self-hosted
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, aarch64, aarch64-unknown-linux-gnu, armv7-unknown-linux-gnueabi]
target: [x86_64, aarch64, armv7l]
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
Expand All @@ -41,7 +41,7 @@ jobs:
path: pycare/dist

windows:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: x86_64-pc-windows-msvc
target: i686-pc-windows-msvc
args: --release --out dist --zig
sccache: 'true'
container: 'off'
Expand All @@ -67,7 +67,7 @@ jobs:
path: pycare/dist

macos:
runs-on: self-hosted
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64-apple-darwin, aarch64-apple-darwin]
Expand Down

0 comments on commit 2145b6d

Please sign in to comment.