summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Kristian Rosbach <hk-git@circlestorm.org>2026-03-07 23:52:22 +0100
committerHans Kristian Rosbach <hk-github@circlestorm.org>2026-03-08 18:39:20 +0100
commit4c67228ca9e862b62d63d5bad7253feaa48a79fc (patch)
tree26a555ec67ef2e93fad7a77df0cde7e284e11ebf
parent77002fb987cfcec3b431d97fc3638f08e764a97a (diff)
downloadProject-Tick-4c67228ca9e862b62d63d5bad7253feaa48a79fc.tar.gz
Project-Tick-4c67228ca9e862b62d63d5bad7253feaa48a79fc.zip
Remove culling of workflows after subsequent pushes.
Doing so breaks coveralls uploads, and the workarounds are causing cancelled workflows when it should not, and it generally fragile. It was a useful workaround when CI took ~2 hours, now that it takes 20 minutes, I think we can afford to complete them.
-rw-r--r--.github/workflows/analyze.yml3
-rw-r--r--.github/workflows/cmake.yml4
-rw-r--r--.github/workflows/codeql.yml3
-rw-r--r--.github/workflows/configure.yml3
-rw-r--r--.github/workflows/fuzz.yml3
-rw-r--r--.github/workflows/libpng.yml3
-rw-r--r--.github/workflows/link.yml3
-rw-r--r--.github/workflows/osb.yml3
-rw-r--r--.github/workflows/pigz.yml3
-rw-r--r--.github/workflows/pkgcheck.yml3
10 files changed, 0 insertions, 31 deletions
diff --git a/.github/workflows/analyze.yml b/.github/workflows/analyze.yml
index ff7cc15a05..3b77870dd6 100644
--- a/.github/workflows/analyze.yml
+++ b/.github/workflows/analyze.yml
@@ -1,8 +1,5 @@
name: Static Analysis
on: [push, pull_request, workflow_dispatch]
-concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- cancel-in-progress: true
jobs:
static-analysis:
name: GCC-14
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index 5eabd3230f..212cb892ee 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -3,10 +3,6 @@ on: [workflow_call, workflow_dispatch]
env:
TERM: xterm-256color
GTEST_COLOR: 1
-concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- # Don't abort on push to avoid incomplete coverage uploads
- cancel-in-progress: ${{ github.event_name != 'push' }}
jobs:
cmake:
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 1c7ef5d164..b54af665d4 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -7,9 +7,6 @@ on:
workflow_dispatch:
schedule:
- cron: "27 17 * * 0"
-concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- cancel-in-progress: true
jobs:
analyze:
name: Analyze
diff --git a/.github/workflows/configure.yml b/.github/workflows/configure.yml
index 8be6cf5bf1..231d038048 100644
--- a/.github/workflows/configure.yml
+++ b/.github/workflows/configure.yml
@@ -1,8 +1,5 @@
name: Configure
on: [push, pull_request, workflow_dispatch]
-concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- cancel-in-progress: true
jobs:
configure:
name: ${{ matrix.name }}
diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml
index 7bb94c6703..218299e015 100644
--- a/.github/workflows/fuzz.yml
+++ b/.github/workflows/fuzz.yml
@@ -10,9 +10,6 @@ on:
- '2.*'
tags:
- '*'
-concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- cancel-in-progress: true
jobs:
fuzzing:
name: Fuzzing
diff --git a/.github/workflows/libpng.yml b/.github/workflows/libpng.yml
index b9c584b0d2..656c36de82 100644
--- a/.github/workflows/libpng.yml
+++ b/.github/workflows/libpng.yml
@@ -1,8 +1,5 @@
name: Libpng
on: [push, pull_request, workflow_dispatch]
-concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- cancel-in-progress: true
jobs:
libpng:
name: Ubuntu Clang
diff --git a/.github/workflows/link.yml b/.github/workflows/link.yml
index 726bffd266..b42aec2357 100644
--- a/.github/workflows/link.yml
+++ b/.github/workflows/link.yml
@@ -1,8 +1,5 @@
name: Link
on: [push, pull_request, workflow_dispatch]
-concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- cancel-in-progress: true
jobs:
zlib:
name: Link zlib
diff --git a/.github/workflows/osb.yml b/.github/workflows/osb.yml
index a6278f9001..56448cd393 100644
--- a/.github/workflows/osb.yml
+++ b/.github/workflows/osb.yml
@@ -1,8 +1,5 @@
name: OSB
on: [push, pull_request, workflow_dispatch]
-concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- cancel-in-progress: true
jobs:
cmake:
name: ${{ matrix.name }}
diff --git a/.github/workflows/pigz.yml b/.github/workflows/pigz.yml
index 5335234c46..a4f8f64b53 100644
--- a/.github/workflows/pigz.yml
+++ b/.github/workflows/pigz.yml
@@ -1,8 +1,5 @@
name: Pigz
on: [workflow_call, workflow_dispatch]
-concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- cancel-in-progress: true
jobs:
pigz:
name: ${{ matrix.name }}
diff --git a/.github/workflows/pkgcheck.yml b/.github/workflows/pkgcheck.yml
index c8d14ceb66..dd2f0b47dc 100644
--- a/.github/workflows/pkgcheck.yml
+++ b/.github/workflows/pkgcheck.yml
@@ -1,8 +1,5 @@
name: Package Check
on: [push, pull_request, workflow_dispatch]
-concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
- cancel-in-progress: true
jobs:
pkgcheck:
name: ${{ matrix.name }}