Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions .github/workflows/ci-ignored-workaround.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Skip CI on ignored paths
on:
push:
branches:
- '*'
paths:
- '.gitignore'
- '**.md'
- 'LICENSE'
pull_request:
branches:
- '*'
paths:
- '.gitignore'
- '**.md'
- 'LICENSE'

jobs:
cmake-fedora-latest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
compiler: [ gcc, clang ]
steps:
- name: Skip
run: echo "Skipping the job"

clang-format-style-check:
runs-on: ubuntu-latest
steps:
- name: Skip
run: echo "Skipping the job"

make-fedora-latest:
runs-on: ubuntu-latest
steps:
- name: Skip
run: echo "Skipping the job"

tests:
runs-on: ubuntu-latest
steps:
- name: Skip
run: echo "Skipping the job"
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
podman build -f ./podmanfile

clang-format-style-check:
# The ubuntu-latest has an old version of clang-format, let's just use the latest installed via brew.
# The ubuntu-latest has an old version of clang-format, let's use ubuntu-24.04 which is in Beta
runs-on: ubuntu-24.04
steps:
- name: Checkout
Expand Down