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:
128
128
sudo apt-get install valgrind
129
129
wget https://apt.llvm.org/llvm.sh
130
130
chmod u+x llvm.sh
131
- sudo ./llvm.sh 18 all
131
+ sudo ./llvm.sh 19 all
132
132
- name : ccache
133
133
uses :
hendrikmuhs/[email protected]
134
134
with :
@@ -141,14 +141,14 @@ jobs:
141
141
-D USE_FUNC_TESTS=ON -D USE_PERF_TESTS=ON
142
142
-D CMAKE_BUILD_TYPE=RELEASE
143
143
env :
144
- CC : clang-18
145
- CXX : clang++-18
144
+ CC : clang-19
145
+ CXX : clang++-19
146
146
- name : Ninja build
147
147
run : |
148
148
cmake --build build
149
149
env :
150
- CC : clang-18
151
- CXX : clang++-18
150
+ CC : clang-19
151
+ CXX : clang++-19
152
152
- name : Run func tests (MPI, num_proc=2)
153
153
run : |
154
154
source scripts/run_mpi.sh
@@ -227,7 +227,7 @@ jobs:
227
227
sudo apt-get install python3-pip
228
228
wget https://apt.llvm.org/llvm.sh
229
229
chmod u+x llvm.sh
230
- sudo ./llvm.sh 18 all
230
+ sudo ./llvm.sh 19 all
231
231
- name : ccache
232
232
uses :
hendrikmuhs/[email protected]
233
233
with :
@@ -241,14 +241,14 @@ jobs:
241
241
-D USE_FUNC_TESTS=ON -D USE_PERF_TESTS=ON
242
242
-D CMAKE_BUILD_TYPE=RELEASE -D ENABLE_ADDRESS_SANITIZER=ON -D ENABLE_UB_SANITIZER=ON
243
243
env :
244
- CC : clang-18
245
- CXX : clang++-18
244
+ CC : clang-19
245
+ CXX : clang++-19
246
246
- name : Ninja build
247
247
run : |
248
248
cmake --build build
249
249
env :
250
- CC : clang-18
251
- CXX : clang++-18
250
+ CC : clang-19
251
+ CXX : clang++-19
252
252
- name : Run tests (MPI)
253
253
run : |
254
254
export ASAN_RUN=1
Original file line number Diff line number Diff line change 6
6
url = https://github.com/boostorg/boost
7
7
[submodule "3rdparty/onetbb "]
8
8
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