summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2023-07-17 03:07:20 -0400
committerGitHub <noreply@github.com>2023-07-17 10:07:20 +0300
commitbf51b6a47c40384d23110f99ca2d46c7834d4e01 (patch)
treef34e69fb43d479d2a96ffaffb1f7eac5170ea626 /.github
parent922e80be71d0f1484ae220571a0e1366ea2db635 (diff)
Make skipped CI run even faster. (#15407)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-dummy.yml14
-rw-r--r--.github/workflows/packaging-dummy.yml1
2 files changed, 0 insertions, 15 deletions
diff --git a/.github/workflows/build-dummy.yml b/.github/workflows/build-dummy.yml
index 50f3d90a00..6bf327e2d0 100644
--- a/.github/workflows/build-dummy.yml
+++ b/.github/workflows/build-dummy.yml
@@ -81,8 +81,6 @@ jobs:
env:
RETRY_DELAY: 300
strategy:
- # Unlike the actual build tests, this completes _very_ fast (average of about 3 minutes for each job), so we
- # just run everything in parallel instead lof limiting job concurrency.
fail-fast: false
matrix: ${{ fromJson(needs.matrix.outputs.matrix) }}
steps:
@@ -93,10 +91,8 @@ jobs:
runs-on: ubuntu-latest
needs:
- matrix
- - prepare-test-images
strategy:
fail-fast: false
- max-parallel: 8
matrix: ${{ fromJson(needs.matrix.outputs.matrix) }}
steps:
- run: echo 'NOT REQUIRED'
@@ -105,12 +101,9 @@ jobs:
name: Test Generated Distfile and Updater Code
runs-on: ubuntu-latest
needs:
- - build-dist
- matrix
- - prepare-test-images
strategy:
fail-fast: false
- max-parallel: 8
matrix: ${{ fromJson(needs.matrix.outputs.matrix) }}
steps:
- run: echo 'NOT REQUIRED'
@@ -118,24 +111,17 @@ jobs:
prepare-upload: # Consolidate the artifacts for uploading or releasing.
name: Prepare Artifacts
runs-on: ubuntu-latest
- needs:
- - build-dist
- - build-static
steps:
- run: echo 'NOT REQUIRED'
artifact-verification-dist: # Verify the regular installer works with the consolidated artifacts.
name: Test Consolidated Artifacts (Source)
runs-on: ubuntu-latest
- needs:
- - prepare-upload
steps:
- run: echo 'NOT REQUIRED'
artifact-verification-static: # Verify the static installer works with the consolidated artifacts.
name: Test Consolidated Artifacts (Static)
runs-on: ubuntu-latest
- needs:
- - prepare-upload
steps:
- run: echo 'NOT REQUIRED'
diff --git a/.github/workflows/packaging-dummy.yml b/.github/workflows/packaging-dummy.yml
index e0b28f2dc9..653227e1c8 100644
--- a/.github/workflows/packaging-dummy.yml
+++ b/.github/workflows/packaging-dummy.yml
@@ -76,6 +76,5 @@ jobs:
strategy:
matrix: ${{ fromJson(needs.matrix.outputs.matrix) }}
fail-fast: false
- max-parallel: 8
steps:
- run: echo 'NOT REQUIRED'