Skip to content

Commit 26eb603

Browse files
committed
[TEST] TEST CI
Do NOT install libhwloc Signed-off-by: Lukasz Dorau <[email protected]>
1 parent 42daf39 commit 26eb603

File tree

9 files changed

+13
-16
lines changed

9 files changed

+13
-16
lines changed

.github/workflows/coverity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install apt packages
3232
run: |
3333
sudo apt-get update
34-
sudo apt-get install -y cmake hwloc libhwloc-dev libnuma-dev libtbb-dev
34+
sudo apt-get install -y cmake hwloc libnuma-dev libtbb-dev
3535
3636
- name: Download Coverity
3737
run: |

.github/workflows/nightly.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Various non-standard tests, requiring e.g. longer run
22
name: Nightly
33

4-
# This job is run at 04:00 UTC every day or on demand.
54
on:
6-
workflow_dispatch:
7-
schedule:
8-
- cron: '0 4 * * *'
5+
push:
6+
branches-ignore:
7+
- 'dependabot/**'
8+
pull_request:
99

1010
permissions:
1111
contents: read
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install apt packages
3434
run: |
3535
sudo apt-get update
36-
sudo apt-get install -y cmake hwloc libhwloc-dev libnuma-dev libtbb-dev
36+
sudo apt-get install -y cmake hwloc libnuma-dev libtbb-dev
3737
3838
- name: Configure CMake
3939
run: >
@@ -70,7 +70,7 @@ jobs:
7070
- name: Install apt packages
7171
run: |
7272
sudo apt-get update
73-
sudo apt-get install -y cmake hwloc libhwloc-dev libnuma-dev libtbb-dev valgrind
73+
sudo apt-get install -y cmake hwloc libnuma-dev libtbb-dev valgrind
7474
7575
- name: Configure CMake
7676
run: >

.github/workflows/pr_push.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,10 @@ permissions:
1616
contents: read
1717

1818
jobs:
19-
CodeChecks:
20-
uses: ./.github/workflows/reusable_checks.yml
2119
DocsBuild:
2220
uses: ./.github/workflows/reusable_docs_build.yml
2321
FastBuild:
2422
name: Fast builds
25-
needs: [CodeChecks, DocsBuild]
2623
uses: ./.github/workflows/reusable_fast.yml
2724
Build:
2825
name: Basic builds

.github/workflows/reusable_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
sudo apt-get update
24-
sudo apt-get install -y black cmake clang-format-15 cmake-format libhwloc-dev doxygen
24+
sudo apt-get install -y black cmake clang-format-15 cmake-format doxygen
2525
2626
# Latest distros do not allow global pip installation
2727
- name: Install Python requirements in venv

.github/workflows/reusable_codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
if: matrix.os == 'ubuntu-latest'
6363
run: |
6464
sudo apt-get update
65-
sudo apt-get install -y cmake clang libhwloc-dev libnuma-dev libtbb-dev
65+
sudo apt-get install -y cmake clang libnuma-dev libtbb-dev
6666
6767
# Latest distros do not allow global pip installation
6868
- name: "[Lin] Install Python requirements in venv"

.github/workflows/reusable_fast.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
if: matrix.os != 'windows-latest'
7474
run: |
7575
sudo apt-get update
76-
sudo apt-get install -y cmake libhwloc-dev libnuma-dev libtbb-dev
76+
sudo apt-get install -y cmake libnuma-dev libtbb-dev
7777
7878
- name: Configure CMake
7979
if: matrix.simple_cmake == 'OFF'

.github/workflows/reusable_proxy_lib.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install apt packages
3333
run: |
3434
sudo apt-get update
35-
sudo apt-get install -y cmake libhwloc-dev libtbb-dev lcov
35+
sudo apt-get install -y cmake libtbb-dev lcov
3636
3737
- name: Configure build
3838
run: >

.github/workflows/reusable_sanitizers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install apt packages
3030
run: |
3131
sudo apt-get update
32-
sudo apt-get install -y clang cmake libhwloc-dev libnuma-dev libtbb-dev
32+
sudo apt-get install -y clang cmake libnuma-dev libtbb-dev
3333
3434
- name: Install oneAPI basekit
3535
if: matrix.compiler.cxx == 'icpx'

.github/workflows/reusable_valgrind.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install apt packages
2121
run: |
2222
sudo apt-get update
23-
sudo apt-get install -y cmake hwloc libhwloc-dev libnuma-dev libtbb-dev valgrind
23+
sudo apt-get install -y cmake hwloc libnuma-dev libtbb-dev valgrind
2424
2525
- name: Configure CMake
2626
run: >

0 commit comments

Comments
 (0)