File tree Expand file tree Collapse file tree 6 files changed +48
-13
lines changed
Expand file tree Collapse file tree 6 files changed +48
-13
lines changed Original file line number Diff line number Diff line change 1+ ' task:mpi ' :
2+ - " tasks/mpi"
3+ ' task:omp ' :
4+ - " tasks/omp"
5+ ' task:seq ' :
6+ - " tasks/seq"
7+ ' task:stl ' :
8+ - " tasks/stl"
9+ ' task:tbb ' :
10+ - " tasks/tbb"
11+ ci :
12+ - " .github"
13+ - " appveyor.yml"
Original file line number Diff line number Diff line change 1+ name : " Label PRs"
2+
3+ on :
4+ - pull_request_target
5+
6+ jobs :
7+ label-pull-requests :
8+ runs-on : ubuntu-latest
9+ permissions :
10+ contents : read
11+ pull-requests : write
12+ steps :
13+ - name : Check out repository
14+ uses : actions/checkout@v4
15+ with :
16+ fetch-depth : 0
17+ - name : Apply labels based on changed files
18+ uses : actions/labeler@v4
19+ with :
20+ repo-token : " ${{ secrets.GITHUB_TOKEN }}"
21+ configuration-path : " .github/labeler.yml"
22+ dot : true
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ jobs:
128128 sudo apt-get install valgrind
129129 wget https://apt.llvm.org/llvm.sh
130130 chmod u+x llvm.sh
131- sudo ./llvm.sh 18 all
131+ sudo ./llvm.sh 19 all
132132 - name : ccache
133133 uses :
hendrikmuhs/[email protected] 134134 with :
@@ -141,14 +141,14 @@ jobs:
141141 -D USE_FUNC_TESTS=ON -D USE_PERF_TESTS=ON
142142 -D CMAKE_BUILD_TYPE=RELEASE
143143 env :
144- CC : clang-18
145- CXX : clang++-18
144+ CC : clang-19
145+ CXX : clang++-19
146146 - name : Ninja build
147147 run : |
148148 cmake --build build
149149 env :
150- CC : clang-18
151- CXX : clang++-18
150+ CC : clang-19
151+ CXX : clang++-19
152152 - name : Run func tests (MPI, num_proc=2)
153153 run : |
154154 source scripts/run_mpi.sh
@@ -227,7 +227,7 @@ jobs:
227227 sudo apt-get install python3-pip
228228 wget https://apt.llvm.org/llvm.sh
229229 chmod u+x llvm.sh
230- sudo ./llvm.sh 18 all
230+ sudo ./llvm.sh 19 all
231231 - name : ccache
232232 uses :
hendrikmuhs/[email protected] 233233 with :
@@ -241,14 +241,14 @@ jobs:
241241 -D USE_FUNC_TESTS=ON -D USE_PERF_TESTS=ON
242242 -D CMAKE_BUILD_TYPE=RELEASE -D ENABLE_ADDRESS_SANITIZER=ON -D ENABLE_UB_SANITIZER=ON
243243 env :
244- CC : clang-18
245- CXX : clang++-18
244+ CC : clang-19
245+ CXX : clang++-19
246246 - name : Ninja build
247247 run : |
248248 cmake --build build
249249 env :
250- CC : clang-18
251- CXX : clang++-18
250+ CC : clang-19
251+ CXX : clang++-19
252252 - name : Run tests (MPI)
253253 run : |
254254 export ASAN_RUN=1
Original file line number Diff line number Diff line change 66 url = https://github.com/boostorg/boost
77[submodule "3rdparty/onetbb "]
88 path = 3rdparty/onetbb
9- url = https://github.com/oneapi-src /oneTBB
9+ url = https://github.com/uxlfoundation /oneTBB
You can’t perform that action at this time.
0 commit comments