File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ name: Continuous Integration
22
33on :
44 push :
5- branches :
6- - ' **' # run on all branches
5+ branches : [ main, develop ]
76 pull_request :
7+ branches : [ develop ]
88 workflow_dispatch :
99 schedule :
10- - cron : " 0 0 * * 0" # Every Sunday at 00:00 UTC
10+ - cron : " 30 15 * * 0" # Every Sunday at 15:30 UTC
1111
1212concurrency :
1313 group : ${{ github.workflow }}-${{ github.ref }}
@@ -161,13 +161,13 @@ jobs:
161161 uses : actions/setup-python@v5
162162 with : { python-version: "3.13" }
163163
164- - name : Install llvm-20
164+ - name : Install llvm
165165 if : matrix.os == 'macos-15'
166166 run : |
167167 brew install gcovr cmake ninja llvm
168- export PATH=$(brew --prefix llvm@20 )/bin:$PATH && echo "PATH=$PATH" >> $GITHUB_ENV
169- export LDFLAGS=-L$(brew --prefix llvm@20 )/lib/c++ -lc++abi -lc++ && echo "LDFLAGS=$LDFLAGS" >> $GITHUB_ENV
170- echo "CXX=clang++-20 " >> $GITHUB_ENV
168+ export PATH=$(brew --prefix llvm)/bin:$PATH && echo "PATH=$PATH" >> $GITHUB_ENV
169+ export LDFLAGS=-L$(brew --prefix llvm)/lib/c++ -lc++abi -lc++ && echo "LDFLAGS=$LDFLAGS" >> $GITHUB_ENV
170+ echo "CXX=clang++" >> $GITHUB_ENV
171171
172172 - name : Setup Cpp
173173 if : matrix.os == 'ubuntu-24.04'
Original file line number Diff line number Diff line change 77 branches : [ develop ]
88 workflow_dispatch :
99 schedule :
10- - cron : ' 30 15 * * 6 '
10+ - cron : " 30 15 * * 0 " # Every Sunday at 15:30 UTC
1111
1212concurrency :
1313 group : ${{ github.workflow }}-${{ github.ref }}
Original file line number Diff line number Diff line change 77 branches : [ develop ]
88 workflow_dispatch :
99 schedule :
10- - cron : ' 30 15 * * 6 '
10+ - cron : " 30 15 * * 0 " # Every Sunday at 15:30 UTC
1111
1212concurrency :
1313 group : ${{ github.workflow }}-${{ github.ref }}
You can’t perform that action at this time.
0 commit comments