Skip to content

Commit

Permalink
rm concurrency checks from non ruff actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamtaranto committed Sep 23, 2024
1 parent 2f7f352 commit 09f48bc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ permissions:
jobs:
linux:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
strategy:
matrix:
target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
Expand All @@ -47,9 +44,6 @@ jobs:

windows:
runs-on: windows-latest
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
strategy:
matrix:
target: [x64, x86]
Expand All @@ -73,9 +67,6 @@ jobs:

macos:
runs-on: macos-latest
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
strategy:
matrix:
target: [x86_64, aarch64]
Expand All @@ -98,9 +89,6 @@ jobs:

sdist:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- name: Build sdist
Expand All @@ -117,9 +105,6 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, windows, macos, sdist]
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ on:
jobs:
rust_on_linux:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 09f48bc

Please sign in to comment.