Reduce CI jobs being run when not needed

This commit is contained in:
Gabe Kangas
2024-07-11 11:44:23 -07:00
parent e7d90d441e
commit c4756a9a45
4 changed files with 56 additions and 4 deletions

View File

@@ -24,8 +24,18 @@ jobs:
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
- name: Get changed files
id: changed-files-yaml
uses: tj-actions/changed-files@v44
with:
files_yaml: |
src:
- '**/*.{go,mod,sum}'
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
if: steps.changed-files-yaml.outputs.src_any_changed == 'true'
with:
go-version: '1.22'
cache: true
@@ -43,6 +53,7 @@ jobs:
${{ runner.os }}-
- name: Local stroage
if: steps.changed-files-yaml.outputs.src_any_changed == 'true'
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
@@ -50,6 +61,7 @@ jobs:
command: cd test/automated/hls && ./run.sh
- name: S3 storage
if: steps.changed-files-yaml.outputs.src_any_changed == 'true'
uses: nick-fields/retry@v3
with:
timeout_minutes: 10