Skip to content

Commit

Permalink
Allow branch names containing CI to run all jobs (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
hummeltech authored Nov 26, 2023
1 parent 7e92e4c commit 0b25d54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
compiler:
- GNU
on_default_branch:
- ${{ contains(github.ref, 'master') || contains(github.ref, 'develop') }}
- ${{ contains(github.ref, 'master') || contains(github.ref, 'develop') || contains(github.ref, 'CI') }}
include:
- image: "ubuntu:22.04"
build_system: Autotools
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
compiler:
- LLVM
on_default_branch:
- ${{ contains(github.ref, 'master') || contains(github.ref, 'develop') }}
- ${{ contains(github.ref, 'master') || contains(github.ref, 'develop') || contains(github.ref, 'CI') }}
include:
- os: macos-13
build_system: Autotools
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
compiler:
- LLVM
on_default_branch:
- ${{ contains(github.ref, 'master') || contains(github.ref, 'develop') }}
- ${{ contains(github.ref, 'master') || contains(github.ref, 'develop') || contains(github.ref, 'CI') }}
include:
- box_generic: freebsd14
build_system: CMake
Expand Down

0 comments on commit 0b25d54

Please sign in to comment.