mirror of
https://github.com/pseXperiments/icicle.git
synced 2026-01-10 07:57:56 -05:00
## Describe the changes This PR: - Updates the CI to run on CI workflow file changes - Updates examples CI to run on examples file changes
45 lines
1.8 KiB
YAML
45 lines
1.8 KiB
YAML
name: Check Changed Files
|
|
|
|
on:
|
|
workflow_call:
|
|
outputs:
|
|
golang:
|
|
description: "Flag for if GoLang files changed"
|
|
value: ${{ jobs.check-changed-files.outputs.golang }}
|
|
rust:
|
|
description: "Flag for if Rust files changed"
|
|
value: ${{ jobs.check-changed-files.outputs.rust }}
|
|
cpp_cuda:
|
|
description: "Flag for if C++/CUDA files changed"
|
|
value: ${{ jobs.check-changed-files.outputs.cpp_cuda }}
|
|
examples:
|
|
description: "Flag for if example files changed"
|
|
value: ${{ jobs.check-changed-files.outputs.examples }}
|
|
|
|
jobs:
|
|
check-changed-files:
|
|
name: Check Changed Files
|
|
runs-on: ubuntu-22.04
|
|
outputs:
|
|
golang: ${{ steps.changed_files.outputs.golang }}
|
|
rust: ${{ steps.changed_files.outputs.rust }}
|
|
cpp_cuda: ${{ steps.changed_files.outputs.cpp_cuda }}
|
|
examples: ${{ steps.changed_files.outputs.examples }}
|
|
steps:
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@v4
|
|
- name: Get all changed files
|
|
id: changed-files-yaml
|
|
uses: tj-actions/changed-files@v39
|
|
# https://github.com/tj-actions/changed-files#input_files_yaml_from_source_file
|
|
with:
|
|
files_yaml_from_source_file: .github/changed-files.yml
|
|
- name: Run Changed Files script
|
|
id: changed_files
|
|
# https://github.com/tj-actions/changed-files#outputs-
|
|
run: |
|
|
echo "golang=${{ steps.changed-files-yaml.outputs.golang_any_modified }}" >> "$GITHUB_OUTPUT"
|
|
echo "rust=${{ steps.changed-files-yaml.outputs.rust_any_modified }}" >> "$GITHUB_OUTPUT"
|
|
echo "cpp_cuda=${{ steps.changed-files-yaml.outputs.cpp_any_modified }}" >> "$GITHUB_OUTPUT"
|
|
echo "examples=${{ steps.changed-files-yaml.outputs.examples_any_modified }}" >> "$GITHUB_OUTPUT"
|