Skip to content

Commit

Permalink
add notest copies of required workflows that only run for ignored paths
Browse files Browse the repository at this point in the history
  • Loading branch information
eap committed Jul 19, 2024
1 parent 173e1b1 commit 70e1cfe
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/macos-ci-aarch64-notest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: macos-ci-aarch64-build
on:
pull_request:
paths:
- 'configs/sites/**'
- 'doc/**'
- '**.md'
- '.github/ISSUE_TEMPLATE/*'
- '.gitignore'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

defaults:
run:
shell: bash

jobs:
macos-ci-aarch64-build:
runs-on: [macos-ci-aarch64]
steps:
- run: 'echo "No build required"'
23 changes: 23 additions & 0 deletions .github/workflows/ubuntu-ci-x86_64-gnu-notest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: ubuntu-ci-c6a-x86_64-gnu-build
on:
pull_request:
paths:
- 'configs/sites/**'
- 'doc/**'
- '**.md'
- '.github/ISSUE_TEMPLATE/*'
- '.gitignore'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

defaults:
run:
shell: bash

jobs:
ubuntu-ci-c6a-x86_64-gnu-build:
runs-on: [ubuntu-ci-c6a-x86_64]
steps:
- run: 'echo "No build required"'
23 changes: 23 additions & 0 deletions .github/workflows/ubuntu-ci-x86_64-intel-notest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: ubuntu-ci-c6a-x86_64-intel-build
on:
pull_request:
paths:
- 'configs/sites/**'
- 'doc/**'
- '**.md'
- '.github/ISSUE_TEMPLATE/*'
- '.gitignore'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

defaults:
run:
shell: bash

jobs:
ubuntu-ci-c6a-x86_64-intel-build:
runs-on: [ubuntu-ci-c6a-x86_64]
steps:
- run: 'echo "No build required"'

0 comments on commit 70e1cfe

Please sign in to comment.