diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index afc6747..6a91ad5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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] @@ -47,9 +44,6 @@ jobs: windows: runs-on: windows-latest - concurrency: - group: ${{ github.ref }} - cancel-in-progress: true strategy: matrix: target: [x64, x86] @@ -73,9 +67,6 @@ jobs: macos: runs-on: macos-latest - concurrency: - group: ${{ github.ref }} - cancel-in-progress: true strategy: matrix: target: [x86_64, aarch64] @@ -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 @@ -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] diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d965593..6d86a21 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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: