From 8cb949ee838019c03561b2181c224e87294bfbef Mon Sep 17 00:00:00 2001 From: Stefan Krastanov Date: Thu, 21 Nov 2024 11:53:34 -0500 Subject: [PATCH] autocancel CI when new commit is made on a pull request --- .github/workflows/ci-julia-nightly.yml | 8 ++++++++ .github/workflows/ci.yml | 27 ++++++++++++++++++++++---- 2 files changed, 31 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-julia-nightly.yml b/.github/workflows/ci-julia-nightly.yml index 94e3854..d018ed3 100644 --- a/.github/workflows/ci-julia-nightly.yml +++ b/.github/workflows/ci-julia-nightly.yml @@ -4,6 +4,14 @@ on: branches: [master, main] tags: ["*"] pull_request: + +concurrency: + # group by workflow and ref; the last slightly strange component ensures that for pull + # requests, we limit to 1 concurrent job, but for the master branch we don't + group: ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main') || github.run_number }} + # Cancel intermediate builds, but only if it is a pull request build. + cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} + env: PYTHON: ~ jobs: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2169dd..cf751e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,6 +4,14 @@ on: branches: [master, main] tags: ["*"] pull_request: + +concurrency: + # group by workflow and ref; the last slightly strange component ensures that for pull + # requests, we limit to 1 concurrent job, but for the master branch we don't + group: ${{ github.workflow }}-${{ github.ref }}-${{ (github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main') || github.run_number }} + # Cancel intermediate builds, but only if it is a pull request build. + cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} + env: PYTHON: ~ jobs: @@ -14,14 +22,28 @@ jobs: fail-fast: false matrix: version: - - '1.9' - '1' + - '1.10' os: - ubuntu-latest threads: - '1' + - '5' arch: - x64 + include: + - arch: aarch64 + os: macos-latest + version: '1' + threads: '1' + - arch: x64 + os: macos-latest + version: '1' + threads: '1' + - arch: x64 + os: windows-latest + version: '1' + threads: '1' steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1 @@ -30,12 +52,9 @@ jobs: arch: ${{ matrix.arch }} - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@v1 - env: - JULIA_CONDAPKG_VERBOSITY: "1" - uses: julia-actions/julia-runtest@v1 env: JULIA_NUM_THREADS: ${{ matrix.threads }} - JULIA_CONDAPKG_VERBOSITY: "1" - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v4 with: